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

11 lines
178 B
Kotlin
Vendored

// "Create property 'foo' as constructor parameter" "true"
class A {
class B {
fun test(): Int {
<caret>foo = 1
return foo
}
}
}