6ebd4b954c
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
15 lines
169 B
Kotlin
Vendored
15 lines
169 B
Kotlin
Vendored
// IGNORE_FIR
|
|
|
|
package test
|
|
|
|
class Conflict {
|
|
companion object
|
|
}
|
|
|
|
fun test() {
|
|
class Conflict
|
|
|
|
<caret>Conflict
|
|
}
|
|
|
|
// REF: companion object of (test).Conflict |