mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
11 lines
205 B
Kotlin
Vendored
11 lines
205 B
Kotlin
Vendored
class Outer {
|
|
class Nested {
|
|
fun foo() {
|
|
class Local {
|
|
val state = <!UNRESOLVED_REFERENCE!>outerState<!>
|
|
}
|
|
}
|
|
}
|
|
|
|
val outerState = 42
|
|
} |