Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/afterLocalValNoReceiver.kt
T
2014-10-03 20:18:41 +04:00

10 lines
132 B
Kotlin

// "Create property 'foo' from usage" "true"
fun test() {
val foo: Int
fun nestedTest(): Int {
return foo
}
}