5d92453532
#KT-1174 In Progress
29 lines
387 B
Kotlin
29 lines
387 B
Kotlin
class Outer {
|
|
class Nested
|
|
inner class Inner
|
|
|
|
fun Inner.foo() {
|
|
Outer()
|
|
Nested()
|
|
Inner()
|
|
}
|
|
|
|
fun Nested.bar() {
|
|
Outer()
|
|
Nested()
|
|
Inner()
|
|
}
|
|
|
|
fun Outer.baz() {
|
|
Outer()
|
|
Nested()
|
|
Inner()
|
|
}
|
|
}
|
|
|
|
fun Outer.foo() {
|
|
Outer()
|
|
<!UNRESOLVED_REFERENCE!>Nested<!>()
|
|
Inner()
|
|
}
|