blob: 6a4047032d69f254d7904382cd444bfcd82e8a80 [file] [log] [blame]
package pack1;
public class ClassWithStaticMethod {
public static void main(String[] args) {
callee();
}
public static void callee() {
}
}