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

10 lines
104 B
Kotlin
Vendored

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