Files
kotlin-fork/idea/testData/codeInsight/outOfBlock/StringInSuperConstroctorCall.kt
T
2019-10-30 21:41:29 +01:00

12 lines
199 B
Kotlin
Vendored

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