Files

9 lines
141 B
Java

interface I {
static void foo () {
newMethod();
}
static void newMethod() {
System.out.println("hello");
}
}