mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
18 lines
243 B
Java
18 lines
243 B
Java
public class A {
|
|
static int getI() {
|
|
return 23;
|
|
}
|
|
|
|
static class B {
|
|
static private int i = 42;
|
|
|
|
static int m() {
|
|
return getI();
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
System.out.println(B.m());
|
|
}
|
|
}
|