59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
38 lines
413 B
Kotlin
38 lines
413 B
Kotlin
// !DIAGNOSTICS_NUMBER: 5
|
|
// !DIAGNOSTICS: NESTED_CLASS_SHOULD_BE_QUALIFIED
|
|
|
|
package p
|
|
|
|
class A {
|
|
class B {
|
|
class Nested
|
|
}
|
|
}
|
|
|
|
fun A.B.test() {
|
|
Nested()
|
|
::Nested
|
|
}
|
|
|
|
class C {
|
|
default object {
|
|
class D {
|
|
class Nested
|
|
}
|
|
}
|
|
}
|
|
|
|
fun C.Default.D.text() {
|
|
Nested()
|
|
::Nested
|
|
}
|
|
|
|
class E {
|
|
class F {
|
|
default object
|
|
}
|
|
}
|
|
|
|
fun E.test() {
|
|
F
|
|
} |