< prev index next >

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

Print this page

        

@@ -19,17 +19,19 @@
  * 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;
+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 >