mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 01:43:57 +07:00
GitOrigin-RevId: 56fec73701b9d77cbcb98afbf45bc751359989ec
9 lines
168 B
Java
9 lines
168 B
Java
// "Change 'implements Super' to 'extends Super'" "true-preview"
|
|
class Super {
|
|
public Super(int x) {}
|
|
}
|
|
class Sub extends Super {
|
|
public Sub() {
|
|
super(1);
|
|
}
|
|
} |