mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
and add test GitOrigin-RevId: 957be987fbc9414e1d099ee86c72193bcfc43c19
10 lines
89 B
Java
10 lines
89 B
Java
class Simple {
|
|
|
|
void x() {
|
|
System.out.println(10);
|
|
}
|
|
|
|
void y() {
|
|
x();
|
|
}
|
|
} |