mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 23:46:49 +07:00
GitOrigin-RevId: e5710feac14035bd2a0193fa84a00f11c8bf8987
14 lines
272 B
Java
14 lines
272 B
Java
// "Add 'int' as 1st parameter to constructor 'Friend()'" "true"
|
|
class Friend {
|
|
Friend(int i) {
|
|
System.out.println(0);
|
|
}
|
|
}
|
|
class Flexible extends Friend {
|
|
|
|
Flexible() {
|
|
System.out.println("before");
|
|
super(<caret>1);
|
|
System.out.println("after");
|
|
}
|
|
} |