mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
156 B
Java
13 lines
156 B
Java
class Test {
|
|
public int m() {
|
|
return <selection>0</selection>;
|
|
}
|
|
}
|
|
|
|
class Test1 {
|
|
Test t;
|
|
|
|
public int n(int v) {
|
|
return t.m();
|
|
}
|
|
} |