15 lines
192 B
Kotlin
Vendored
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) {}
|
|
} |