f309920af8
Fixes #KT-12089
7 lines
142 B
Plaintext
Vendored
7 lines
142 B
Plaintext
Vendored
// "Make primary constructor parameter 'foo' a property" "true"
|
|
|
|
class A(val foo: String) {
|
|
fun bar() {
|
|
val a = foo<caret>
|
|
}
|
|
} |