Files
kotlin-fork/idea/testData/resolve/references/TopLevelClassVsLocalClassQualifier.kt
T
Roman Golyshev 6ebd4b954c Add new reference resolve tests
The main purpose is to show that old frontend and FIR work differently
in the case of the conflicts of local and top level classes/objects

See the tests that marked with // IGNORE_FIR

Corresponding ticket is ^KT-45192
2021-03-01 10:23:57 +00:00

13 lines
132 B
Kotlin
Vendored

// IGNORE_FIR
package test
class Conflict
fun test() {
class Conflict
<caret>Conflict
}
// REF: (in test.test).Conflict