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