blob: 7fd95189c9e7d8cf07ce7b3169176552a1086dcd [file] [log] [blame]
// "Add parameter to function 'f'" "true"
interface O {
fun f(a: Int, i: Int)
}
interface OO : O {
override fun f(a: Int, i: Int) {
}
}
interface OOO : OO {
override fun f(a: Int, i: Int) {}
}
fun usage(o: O) {
o.f(1, 12)
}
fun usage(o: OO) {
o.f(13, 12)
}
fun usage(o: OOO) {
o.f(3, 12)
}