mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 19:58:23 +07:00
(related to the old issues IDEA-95697, IDEA-102872 & IDEA-111785) GitOrigin-RevId: b9750fa39fa60c8562eba7561a7015cfd9548fa2
11 lines
186 B
Java
11 lines
186 B
Java
// "Add protected no-args constructor to X" "true"
|
|
public abstract class X {
|
|
protected X(int... a) {}
|
|
public X(String... b) {}
|
|
|
|
protected X() {
|
|
}
|
|
}
|
|
|
|
class Y extends X {
|
|
} |