mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 041eb5569f1d1d1aaae434e0f79089ae578b2e5b
11 lines
121 B
Java
11 lines
121 B
Java
class A {
|
|
void foo(int <caret>i) {}
|
|
}
|
|
class B extends A {
|
|
void foo() {}
|
|
|
|
@Override
|
|
void foo(int i) {
|
|
|
|
}
|
|
} |