1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
14 lines
204 B
Kotlin
14 lines
204 B
Kotlin
class Test {
|
|
interface Foo { }
|
|
|
|
class FooImplNested: Foo { }
|
|
|
|
inner class FooImplInner: Foo { }
|
|
}
|
|
|
|
fun box(): String {
|
|
Test().FooImplInner()
|
|
Test.FooImplNested()
|
|
return "OK"
|
|
}
|