mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
7 lines
158 B
Java
7 lines
158 B
Java
class QTest {
|
|
final int myI = foo();
|
|
int foo(){return 0;}
|
|
public static void main(String[] args) {
|
|
System.out.println(new QTest().my<caret>I);
|
|
}
|
|
} |