Files
2021-03-03 11:38:41 +00:00

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);
}
}