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

11 lines
169 B
Plaintext
Raw Normal View History

2023-10-18 14:54:41 +00:00
package pkg.sub;
import java.lang.Integer;
import pkg.sub2.Cycle2;
public class Cycle1 {
test() {
var cycle2 = new Cycle2();
cycle2.test();
}
}