blob: 8b0245067222057b962c5cbd793b881cc6b939d4 [file] [log] [blame]
// KT-156 Fix the this<Super> syntax
fun foo() {
super.foo();
super<Int>.foo();
super<>.foo();
super<Int>@label.foo();
}