Test renamed, test data moved

This commit is contained in:
Andrey Breslav
2012-06-14 13:15:54 +04:00
parent e92f706c64
commit 036981f368
6 changed files with 88 additions and 58 deletions
@@ -0,0 +1,17 @@
// FILE: a.kt
class A {}
// FILE: b.kt
package p; class C {fun f() {}}
// FILE: c.kt
package p; open class G<T> {open fun f(): T {} fun a() {}}
// FILE: d.kt
package p; class G2<E> : G<E> { fun g() : E {} override fun f() : E {}}
// FILE: e.kt
package p; fun foo() {}
// FILE: f.kt
package p; fun foo(a: C) {}