Files
kotlin-fork/compiler/testData/codegen/box/fieldRename/constructorAndClassObject.kt
T
2020-03-10 15:19:34 +03:00

17 lines
208 B
Kotlin
Vendored

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