Files
kotlin/compiler/testData/codegen/box/innerNested/kt3132.kt
2015-05-12 19:43:17 +02:00

14 lines
204 B
Kotlin
Vendored

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