mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
204 B
Java
16 lines
204 B
Java
|
|
class Main {
|
|
public Main() {
|
|
this(f<caret>oo());
|
|
}
|
|
|
|
public Main(boolean b) { }
|
|
|
|
private static boolean foo() {
|
|
if (2 < 1) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
} |