Files
kotlin-fork/compiler/testData/codegen/box/innerNested/kt3132.kt
T
Alexander Udalov 2e64aac788 Add regression test for KT-3132
#KT-3132 Obsolete
2013-01-31 20:59:16 +04:00

14 lines
200 B
Kotlin

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