147521d6cb
#KT-16118 Fixed #KT-30007 Fixed
17 lines
268 B
Plaintext
Vendored
17 lines
268 B
Plaintext
Vendored
import Outer.Middle.Inner as Inner1
|
|
|
|
class Outer {
|
|
class Middle {
|
|
class Inner(val outer: Outer) {
|
|
constructor() : this(Outer())
|
|
}
|
|
}
|
|
}
|
|
|
|
class Middle {
|
|
fun test() {
|
|
val i = Inner1(Outer())
|
|
val b = Inner1()
|
|
}
|
|
}
|