mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: 6648c003ae7030c371b83fd68550e81ad1debdf9
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 + ")");
|
|
}
|
|
}
|
|
|
|
} |