Files
2009-09-10 20:43:40 +04:00

9 lines
105 B
Plaintext

class Test {
void foo(int i) {
System.out.println("hello");
}
void bar() {
foo(0);
}
}