blob: ecf1e0d6c9c9701ea7f99ca9e6f6aa68eec37b01 [file]
// RUN_PIPELINE_TILL: BACKEND
// See KT-40327
interface Foo {
fun some(x: Int = 1, y: Int)
}
interface Bar {
fun some(x: Int, y: Int = 2)
}
class Impl : Foo, Bar {
override fun some(x: Int, y: Int) {
// println("x = $x y = $y")
}
}
fun main() {
Impl().some()
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral, interfaceDeclaration, override */