Files
kotlin-fork/compiler/testData/diagnostics/tests/LocalClassAndShortSubpackageNames.fir.kt
T
Andrey Zinovyev de3f31cf78 [FIR] Partial implementation of DEPRECATION(_ERROR) diagnostics
No support for inheritance deprecations
and deprecations in qualifier's parts
2021-07-07 16:19:28 +03:00

18 lines
225 B
Kotlin
Vendored

// FILE: A.kt
package foo.bar
class X
// FILE: B.kt
package foo
fun f() {
class Local1 {
fun g() : <!UNRESOLVED_REFERENCE!>bar.X<!>? = null
}
class Local2 {
fun g() : foo.bar.X? = null
}
}