mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
13 lines
189 B
Java
13 lines
189 B
Java
class Test {
|
|
int method(int a, int b) {
|
|
return <selection>a + b</selection>;
|
|
}
|
|
}
|
|
|
|
class XTest {
|
|
int n() {
|
|
Test t;
|
|
|
|
return t.method(1, 2);
|
|
}
|
|
} |