mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
correctly check for super call in constructor (IDEA-97203)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Base {
|
||||
public B<caret>ase() {
|
||||
}
|
||||
}
|
||||
|
||||
class AAA extends Base {
|
||||
public AAA() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import java.io.IOException;
|
||||
|
||||
class Base {
|
||||
public Base() throws IOException {
|
||||
}
|
||||
}
|
||||
|
||||
class AAA extends Base {
|
||||
public AAA() {
|
||||
super();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user