10 lines
132 B
Kotlin
10 lines
132 B
Kotlin
// "Create property 'foo' from usage" "true"
|
|
|
|
fun test() {
|
|
val foo: Int
|
|
|
|
fun nestedTest(): Int {
|
|
return foo
|
|
}
|
|
}
|