Files
kotlin-fork/j2k/tests/testData/ast/constructors/fieldsInitializedFromParams6.kt
T

7 lines
76 B
Kotlin

class C(x: String) {
public var x: Any
{
this.x = x
}
}