Files
kotlin-fork/compiler/visualizer/testData/rawBuilder/expressions/super.kt
T
Ivan Cilcic fe328f8c7a Add some additional information to psi renderer
1) Trim unused spaces in annotations
2) Rewrote fq name rendering
3) Added annotations to for loop variable
4) Added type arguments render along to type parameters in functions
2019-08-30 11:50:32 +03:00

26 lines
401 B
Kotlin
Vendored

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()
}
}