Tests moved to appropriate locations

This commit is contained in:
Andrey Breslav
2011-10-21 13:37:14 +04:00
parent d445a09a80
commit fb971ff7cb
4 changed files with 1 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
// KT-156 Fix the this<Super> syntax
fun foo() {
super.foo();
super<Int>.foo();
super<>.foo();
super<Int>@label.foo();
}