2ee8f1c454
#KT-5362 Fixed #KT-8814 Fixed
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
|
|
} |