Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/primaryParameter/memberValNoReceiver.kt.after
T
2015-10-20 18:39:47 +03:00

10 lines
165 B
Plaintext
Vendored

// "Create property 'foo' as constructor parameter" "true"
class A {
class B(val foo: Int) {
fun test(): Int {
return foo
}
}
}