This commit is contained in:
Dmitry Jemerov
2009-09-10 20:09:11 +04:00
parent 8349aa1889
commit b854be0323
51 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
class C {
void method() {
method(27);
}
void method(int i) {
}
}
class C1 extends C {
void method(int i) {
}
}
class Usage {
{
new C().method();
new C1().method();
}
}