Fix issues with incremental cache version change
#KT-9360 fixed
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
Cleaning output files:
|
||||
out/production/module1/META-INF/module1.kotlin_module
|
||||
out/production/module1/a/APackage.class
|
||||
out/production/module1/a/Module1_AKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module1/src/module1_A.kt
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module2/b/B.class
|
||||
out/production/module2/b/C.class
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/module2_B.kt
|
||||
End of files
|
||||
Compiling files:
|
||||
module2/src/module2_C.java
|
||||
End of files
|
||||
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
module1->
|
||||
module2->module1
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package a
|
||||
|
||||
val X = 10
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package a
|
||||
|
||||
val X = 11
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package b
|
||||
|
||||
class B {
|
||||
val x = a.X
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package b;
|
||||
|
||||
class C {
|
||||
C() {
|
||||
new B();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user