0ae45a2835
#KT-6502 Obsolete
7 lines
238 B
Kotlin
Vendored
7 lines
238 B
Kotlin
Vendored
class A {
|
|
inner class XYZ
|
|
|
|
fun foo() {
|
|
val <warning>v</warning>: A.XYZ = A.<error descr="[RESOLUTION_TO_CLASSIFIER] Constructor of inner class XYZ can be called only with receiver of containing class">XYZ</error>()
|
|
}
|
|
} |