72235b8527
#KT-59677 Fixed
5 lines
135 B
Kotlin
Vendored
5 lines
135 B
Kotlin
Vendored
class Outer { open inner class Inner }
|
|
fun test() {
|
|
val x = object : <!INNER_CLASS_CONSTRUCTOR_NO_RECEIVER!>Outer.Inner<!>() { }
|
|
}
|