Files
kotlin-fork/compiler/testData/codegen/box/innerNested/kt3132.kt
T
2019-11-19 11:00:09 +03:00

15 lines
234 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class Test {
interface Foo { }
class FooImplNested: Foo { }
inner class FooImplInner: Foo { }
}
fun box(): String {
Test().FooImplInner()
Test.FooImplNested()
return "OK"
}