Files
2023-09-18 21:12:45 +00:00

15 lines
192 B
Kotlin
Vendored

// FUNCTION: bar
package test.locals
class Owner {
fun foo(i: Int) {
var x = true
fun bar() {
baz(i, x)
}
}
fun baz(j: Int, y: Boolean) {}
}