Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
open class A {
|
||||
fun foo() {}
|
||||
}
|
||||
Vendored
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
open class A {
|
||||
fun foo() {}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
package foo
|
||||
|
||||
class B : A() {
|
||||
fun bar() {}
|
||||
}
|
||||
Vendored
+54
@@ -0,0 +1,54 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/foo/A.class
|
||||
End of files
|
||||
Marked as dirty by Kotlin:
|
||||
src/B.kt
|
||||
src/createA.kt
|
||||
src/createB.kt
|
||||
src/useAfoo.kt
|
||||
src/useBbar.kt
|
||||
Cleaning output files:
|
||||
out/production/module/foo/B.class
|
||||
out/production/module/use/CreateAKt.class
|
||||
out/production/module/use/CreateBKt.class
|
||||
out/production/module/use/UseAfooKt.class
|
||||
out/production/module/use/UseBbarKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/B.kt
|
||||
src/createA.kt
|
||||
src/createB.kt
|
||||
src/useAfoo.kt
|
||||
src/useBbar.kt
|
||||
End of files
|
||||
Exit code: ABORT
|
||||
------------------------------------------
|
||||
COMPILATION FAILED
|
||||
Unresolved reference: A
|
||||
Unresolved reference: A
|
||||
|
||||
================ Step #2 =================
|
||||
|
||||
Compiling files:
|
||||
src/A.kt
|
||||
src/B.kt
|
||||
src/createA.kt
|
||||
src/createB.kt
|
||||
src/useAfoo.kt
|
||||
src/useBbar.kt
|
||||
End of files
|
||||
Exit code: OK
|
||||
------------------------------------------
|
||||
|
||||
================ Step #3 =================
|
||||
|
||||
Compiling files:
|
||||
src/failCompilation.kt
|
||||
End of files
|
||||
Exit code: ABORT
|
||||
------------------------------------------
|
||||
COMPILATION FAILED
|
||||
Expecting a top level declaration
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package use
|
||||
|
||||
import foo.*
|
||||
|
||||
fun createA() = A()
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package use
|
||||
|
||||
import foo.*
|
||||
|
||||
fun createB() = B()
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
// TODO remove this file after IDEA-154389 will be fixed
|
||||
|
||||
invalid_code
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
package other
|
||||
|
||||
fun f() {}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package use
|
||||
|
||||
import foo.*
|
||||
|
||||
fun useAfoo() {
|
||||
createA().foo()
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package use
|
||||
|
||||
import foo.*
|
||||
|
||||
fun useBbar() {
|
||||
createB().bar()
|
||||
}
|
||||
Reference in New Issue
Block a user