mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
122 B
Kotlin
Vendored
11 lines
122 B
Kotlin
Vendored
class Outer {
|
|
|
|
fun foo() = 1
|
|
|
|
inner class Inner {
|
|
|
|
val x = this@Outer.foo()
|
|
|
|
val y = foo()
|
|
}
|
|
} |