Minor, use other package in test data file

To avoid rendering contents of package org.intellij.lang.annotations
into the corresponding .txt file
This commit is contained in:
Alexander Udalov
2017-05-19 17:49:48 +03:00
parent f8e82f148a
commit 6d47991172
2 changed files with 23 additions and 279 deletions
+4 -4
View File
@@ -1,7 +1,7 @@
// MODULE: m1
// FILE: org/test/Foo.java
// FILE: test/Foo.java
package org.test;
package test;
class Foo {
static Foo create() { return Foo(); }
@@ -11,10 +11,10 @@ class Foo {
// MODULE: m2(m1)
// FILE: test.kt
package org.test
package test
fun test() {
Foo()
val a: Foo = Foo.create()
Foo().takeFoo(a)
}
}