Rename: jps-plugin -> jps/jps-plugin
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
public class JavaClass {
|
||||
public void foo() {
|
||||
}
|
||||
|
||||
public void bar() {
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class JavaClass {
|
||||
void foo() {
|
||||
}
|
||||
|
||||
public void bar() {
|
||||
}
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/JavaClass.class
|
||||
End of files
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Compiling files:
|
||||
src/JavaClass.java
|
||||
End of files
|
||||
Cleaning output files:
|
||||
out/production/module/META-INF/module.kotlin_module
|
||||
out/production/module/second/UsageKt.class
|
||||
End of files
|
||||
Compiling files:
|
||||
src/usage.kt
|
||||
End of files
|
||||
Exit code: ABORT
|
||||
------------------------------------------
|
||||
COMPILATION FAILED
|
||||
Cannot access 'foo': it is package-private in 'JavaClass'
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
================ Step #1 =================
|
||||
|
||||
Cleaning output files:
|
||||
out/production/module/JavaClass.class
|
||||
End of files
|
||||
Exit code: NOTHING_DONE
|
||||
------------------------------------------
|
||||
Compiling files:
|
||||
src/notUsage.kt
|
||||
src/usage.kt
|
||||
End of files
|
||||
Exit code: ABORT
|
||||
------------------------------------------
|
||||
COMPILATION FAILED
|
||||
Symbol /JavaClass.foo is invisible
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package first
|
||||
|
||||
import JavaClass
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
JavaClass().bar()
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
package second
|
||||
|
||||
import JavaClass
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
JavaClass().foo()
|
||||
}
|
||||
Reference in New Issue
Block a user