Files
kotlin/idea/testData/codeInsight/outOfBlock/StringInSuperConstroctorCall.kt

12 lines
180 B
Kotlin
Vendored

// FALSE
abstract class S(val f: () -> Unit)
fun foo(s: String, f: () -> Unit) {}
class ST : S(
{
foo("a <caret>test calculator") {
}
})