mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
15 lines
245 B
Java
15 lines
245 B
Java
public class Test {
|
|
|
|
class Result {}
|
|
|
|
private static class Nested {
|
|
void test() {
|
|
<selection>int x = 0;
|
|
int y = 0;
|
|
System.out.println();</selection>
|
|
|
|
System.out.println("Point(" + x + ", " + y + ")");
|
|
}
|
|
}
|
|
|
|
} |