9 lines
132 B
Kotlin
Vendored
9 lines
132 B
Kotlin
Vendored
internal class C(x: Any?, b: Boolean) {
|
|
var x: Any? = null
|
|
|
|
init {
|
|
if (b) {
|
|
this.x = x
|
|
}
|
|
}
|
|
} |