10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
class Outer {
|
|
class Nested
|
|
inner class Inner
|
|
}
|
|
|
|
fun test() {
|
|
Outer()::Inner
|
|
<!UNRESOLVED_REFERENCE!>Outer()::Nested<!>
|
|
}
|