Files
kotlin-fork/compiler/testData/codegen/box/fieldRename/constructorAndClassObject.kt
T
2013-06-17 15:20:42 +04:00

17 lines
204 B
Kotlin

class Test(val prop: String) {
class object {
public val prop : String = "CO";
}
}
fun box() : String {
val obj = Test("OK");
if (Test.prop != "CO") return "fail1";
return obj.prop;
}