[FIR] Fix resolving of local class reference chain ^KT-47135 Fixed
This commit is contained in:
committed by
TeamCityServer
parent
cbfe0ac073
commit
3dd8ad3599
@@ -0,0 +1,15 @@
|
||||
// FIR_IDENTICAL
|
||||
// KT-47135
|
||||
|
||||
fun test2() {
|
||||
class LocalA {
|
||||
inner class LocalB {
|
||||
inner class LocalC {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun LocalA.LocalB.blah() {
|
||||
val c: LocalA.LocalB.LocalC = LocalC()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user