KT-6165, KT-9547: fix testData for JPS plugin.
Test contains effectively single module (with circular dependencies), and should not have conflicting declarations. Rename the package in a library used in this test. #KT-9547 Fixed
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
package module1;
|
||||
package lib.module1;
|
||||
|
||||
public class JavaClass {
|
||||
public static void oldJavaMethod() {}
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package module1
|
||||
package lib.module1
|
||||
|
||||
import module2.*
|
||||
import lib.module2.*
|
||||
|
||||
fun foo() {
|
||||
JavaClass.oldJavaMethod()
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package module2
|
||||
package lib.module2
|
||||
|
||||
public object KotlinObject {
|
||||
public fun oldKotlinMethod() {
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package module2
|
||||
package lib.module2
|
||||
|
||||
import module1.*
|
||||
import lib.module1.*
|
||||
|
||||
fun bar() {
|
||||
JavaClass.oldJavaMethod()
|
||||
Reference in New Issue
Block a user