Files
kotlin-fork/compiler/testData/codegen/defaultArguments/blackBox/constructor/kt2852.kt
T
Natalia.Ukhorskaya 538aa869b4 Constructor with default arguments for inner class
#KT-2852 Fixed
2012-12-27 12:29:01 +04:00

7 lines
114 B
Kotlin

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