mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 10:50:16 -06:00
Arguments are added to the dependencies list, and to the "--module-path" passed to javac, which is only generated for adequate JDK versions.
14 lines
199 B
Java
14 lines
199 B
Java
import org.foo.Foo;
|
|
import com.bar.Bar;
|
|
|
|
class Import
|
|
{
|
|
public static void main(String args[])
|
|
{
|
|
Foo foo = new Foo();
|
|
Bar bar = new Bar();
|
|
foo.printName();
|
|
bar.printName();
|
|
}
|
|
}
|