mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 04:40:28 +07:00
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");
|
|
}
|
|
} |