Files
kotlin-fork/compiler/testData/codegen/regressions/kt508.jet
T
2011-11-14 19:34:00 +02:00

18 lines
376 B
Plaintext

namespace mult_constructors_3_bug
public open class Identifier() {
private var myNullable : Boolean = true
class object {
open public fun init(isNullable : Boolean) : Identifier {
val __ = Identifier()
__.myNullable = isNullable
return __
}
}
}
fun box() : String {
Identifier.init(true)
return "OK"
}