Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2a568be17b8f4a9af8f61b27d156c07d37c12fdc
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
LocalClassAndShortSubpackageNames.fir.kt
blob: 68bc2bc9d48afbc78f77a907d99e525b71943f66 [
file
]
// 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
}
}