Files
kotlin-fork/compiler/testData/codegen/regressions/kt508.jet
T
2011-12-20 22:56:13 +04:00

18 lines
374 B
Plaintext

package 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"
}