< prev index next >

test/langtools/tools/jdeps/mrjar/Main.java

Print this page

        

*** 19,35 **** * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! package test; public class Main { public void run() { Version v = new Version(); v.getVersion(); } public static void main(String[] args) { (new Main()).run(); } } --- 19,37 ---- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ ! import test.Version; ! import p.Foo; public class Main { public void run() { Version v = new Version(); v.getVersion(); } public static void main(String[] args) { (new Main()).run(); + Foo foo = new Foo(); } }
< prev index next >