Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/var.kt
T
2016-04-29 12:14:42 +02:00

7 lines
135 B
Kotlin
Vendored

// "Make primary constructor parameter 'foo' a property" "true"
class A(foo: String) {
fun bar() {
foo<caret> = ""
}
}