2e64aac788
#KT-3132 Obsolete
14 lines
200 B
Kotlin
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"
|
|
}
|