41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
18 lines
374 B
Kotlin
18 lines
374 B
Kotlin
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"
|
|
}
|