Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/independentProperty.kt
T
2016-09-30 16:39:13 +03:00

6 lines
77 B
Kotlin
Vendored

class Hello<caret>(val x: String) {
val y = "Hello"
val z = x + y
}