Files
kotlin-fork/idea/testData/quickfix/canBeParameter/usedPrivateInInitializer.kt
T
2016-04-11 16:32:26 +03:00

9 lines
153 B
Kotlin
Vendored

// "Remove 'val' from parameter" "true"
class UsedInProperty(private <caret>val x: Int) {
var y: String
init {
y = x.toString()
}
}