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

10 lines
123 B
Kotlin
Vendored

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