Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1417.kt
T
Alexander Udalov 41a416da60 Move blackBoxFile() testData to box/ directory
Delete all test methods (and empty test classes), since they'll be
auto-generated
2013-01-28 18:20:17 +04:00

10 lines
183 B
Kotlin

package pack
open class A(val value: String )
class B(value: String) : A(value) {
fun toString() = "B($value)";
}
fun box() = if (B("4").toString() == "B(4)") "OK" else "fail"