Files
kotlin-fork/idea/testData/resolve/references/TopLevelObjectVsLocalClassConstructor.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

11 lines
120 B
Kotlin
Vendored

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