summaryrefslogtreecommitdiffstats
path: root/tests/new/testPackage/Import.java
blob: b546ad89f89532dfb3b3eaf0848548f04589bd55 (plain)
1
2
3
4
5
6
7
8
9
package testPackage;

import testPackage.subPackage.Class1;

public class Import extends Class1 {
    public static void main( String[] args ) {
        print( "here" );
    }
}