JavaCompilerCore/resources/packageTest/pkg/sub2/Cycle2.jav

11 lines
169 B
Plaintext
Raw Normal View History

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