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
168 B
Kotlin
Vendored
15 lines
168 B
Kotlin
Vendored
// IGNORE_FIR
|
|
|
|
package test
|
|
|
|
object Conflict {
|
|
operator fun invoke() {}
|
|
}
|
|
|
|
fun test() {
|
|
class Conflict(i: Int)
|
|
|
|
<caret>Conflict()
|
|
}
|
|
|
|
// REF: (test).Conflict |