JavaCompilerCore/resources/packageTest/pkg/sub/Test1.jav

11 lines
133 B
Plaintext
Raw Normal View History

2023-10-18 14:54:41 +00:00
package pkg.sub;
import pkg.sub2.Test2;
public class Test1 {
main() {
var t2 = new Test2();
t2.test();
}
}