12 lines
222 B
Kotlin
Vendored
12 lines
222 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
class Outer {
|
|
class Nested {
|
|
fun foo() {
|
|
class Local {
|
|
val state = <!UNRESOLVED_REFERENCE!>outerState<!>
|
|
}
|
|
}
|
|
}
|
|
|
|
val outerState = 42
|
|
} |