Add test methods and data base on raw fir builder test data
This commit is contained in:
committed by
Mikhail Glukhikh
parent
fd8205e317
commit
8047aa22a4
@@ -0,0 +1,25 @@
|
||||
interface A {
|
||||
fun foo() {}
|
||||
}
|
||||
|
||||
interface B {
|
||||
fun foo() {}
|
||||
fun bar() {}
|
||||
}
|
||||
|
||||
class C : A, B {
|
||||
override fun bar() {
|
||||
// fun (B).bar(): Unit
|
||||
// │
|
||||
super.bar()
|
||||
}
|
||||
|
||||
override fun foo() {
|
||||
// fun (A).foo(): Unit
|
||||
// │
|
||||
super<A>.foo()
|
||||
// fun (B).foo(): Unit
|
||||
// │
|
||||
super<B>.foo()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user