f1d8a6e5d1
and fix CONFLICTING_OVERLOADS to use it
9 lines
188 B
Kotlin
Vendored
9 lines
188 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
interface Some {
|
|
fun test()
|
|
}
|
|
|
|
class SomeImpl : Some {
|
|
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
|
|
<!CONFLICTING_OVERLOADS!>override fun test()<!> {}
|
|
} |