Files
kotlin/idea/testData/codeInsight/outOfBlock/InFunInPropertyInObjectLiteral.kt
2015-05-13 16:13:13 +02:00

8 lines
90 B
Kotlin
Vendored

// FALSE
interface Some
fun test() {
val foo = object: Some {
<caret>
}
}