1b553ebfaf
Added tests from testData/codegen/box directory. There are blackbox tests in other directories and they are to be added.
14 lines
187 B
Kotlin
14 lines
187 B
Kotlin
public class Test {
|
|
val content = 1
|
|
inner class A {
|
|
val v = object {
|
|
fun f() = content
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
Test().A()
|
|
|
|
return "OK"
|
|
} |