2015-09-07 11:44:36 -06:00
|
|
|
// hiding/ImportedMyClass.java
|
2015-06-15 17:47:35 -07:00
|
|
|
import hiding.mypackage.*;
|
|
|
|
|
|
|
|
public class ImportedMyClass {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
MyClass m = new MyClass();
|
|
|
|
}
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|
|
|
|
/* Output: (None) */
|