Files
kotlin-fork/compiler/testData/psi/Super.jet
T
2011-10-21 13:37:14 +04:00

7 lines
136 B
Plaintext

// KT-156 Fix the this<Super> syntax
fun foo() {
super.foo();
super<Int>.foo();
super<>.foo();
super<Int>@label.foo();
}