mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
13 lines
180 B
Java
13 lines
180 B
Java
class Test {
|
|
|
|
static class B {
|
|
int getX(){
|
|
return 42;
|
|
}
|
|
}
|
|
|
|
void test(){
|
|
<selection>int x = new Test.B().getX();</selection>
|
|
System.out.println(x);
|
|
}
|
|
} |