Files
kotlin-fork/compiler/testData/codegen/defaultArguments/blackBox/constructor/kt2852.kt
T
Alexander Udalov 5d92453532 Inaccessible outer class member is now an error
#KT-1174 In Progress
2013-01-16 23:11:41 +04:00

7 lines
120 B
Kotlin

fun box(): String {
val o = object {
inner class A(val value: String = "OK")
}
return o.A().value
}