mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
12 lines
211 B
Java
12 lines
211 B
Java
class One {
|
|
static boolean truth = true;
|
|
static void important() {
|
|
System.out.println(1);
|
|
}
|
|
}
|
|
class A extends One {
|
|
Two() {
|
|
important();
|
|
System.out.println(truth);
|
|
}
|
|
} |