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:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user