mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
16 lines
315 B
Java
16 lines
315 B
Java
public class StatementsBeforeSuper extends Super {
|
|
|
|
public StatementsBeforeSuper() {
|
|
this(<caret>hello());
|
|
final int hello = hello();
|
|
System.out.println(hello());
|
|
}
|
|
|
|
public StatementsBeforeSuper(int i) {
|
|
super(i);
|
|
}
|
|
|
|
static int hello() {
|
|
return 1;
|
|
}
|
|
} |