Simple LR Tests don't need to compare all the packages in the world

This commit is contained in:
Andrey Breslav
2012-07-26 17:41:46 +04:00
parent dabd2ef4ad
commit 2923c1f32e
16 changed files with 61 additions and 53 deletions
@@ -1,17 +1,19 @@
// FILE: a.kt
package test
class A {}
// FILE: b.kt
package p; class C {fun f() {}}
package test.p; class C {fun f() {}}
// FILE: c.kt
package p; open class G<T> {open fun f(): T {} fun a() {}}
package test.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 {}}
package test.p; class G2<E> : G<E> { fun g() : E {} override fun f() : E {}}
// FILE: e.kt
package p; fun foo() {}
package test.p; fun foo() {}
// FILE: f.kt
package p; fun foo(a: C) {}
package test.p; fun foo(a: C) {}