mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
Support -Xmodule-path and -Xadd-modules command line arguments
#KT-18598 In Progress #KT-18599 Fixed
This commit is contained in:
9
compiler/testData/javaModules/simpleUseNonExportedPackage/moduleA/a/A.java
vendored
Normal file
9
compiler/testData/javaModules/simpleUseNonExportedPackage/moduleA/a/A.java
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
package a;
|
||||
|
||||
import a.impl.AImpl;
|
||||
|
||||
public class A {
|
||||
public static AImpl getInstance() {
|
||||
return new AImpl();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user