9 lines
116 B
Kotlin
9 lines
116 B
Kotlin
class C(x: Any, b: Boolean) {
|
|
public var x: Any
|
|
|
|
{
|
|
if (b) {
|
|
this.x = x
|
|
}
|
|
}
|
|
} |