blob: 0b1bc280440eb30c334eacee9430f74df43e4a50 [file] [log] [blame]
class Test {
public static void main(String[] args) {
newMethod();
System.out.println("hello");
}
private static void newMethod() {
System.out.println("hello");
System.out.println("hello");
}
}