mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 08:45:34 +07:00
check constructor only implicitly called constructor (IDEA-164500)
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
class Base {
|
||||
|
||||
String[] items;
|
||||
|
||||
public Base(String ... items) throws Exception {
|
||||
this.items = items;
|
||||
}
|
||||
|
||||
public Base() {
|
||||
this.items = null;
|
||||
}
|
||||
}
|
||||
|
||||
class Derived extends Base {
|
||||
public Derived() {}
|
||||
}
|
||||
class Derived1 extends Base {}
|
||||
Reference in New Issue
Block a user