12 lines
139 B
Kotlin
Vendored
12 lines
139 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class Outer {
|
|
|
|
fun foo() = 1
|
|
|
|
inner class Inner {
|
|
|
|
val x = this@Outer.foo()
|
|
|
|
val y = foo()
|
|
}
|
|
} |