mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 6d16a2a593d2eb28e4b1a949377bdb1126aa2487
14 lines
200 B
Java
14 lines
200 B
Java
class Surreptitious {
|
|
Surreptitious(int i) {
|
|
System.out.println(i);
|
|
}
|
|
|
|
void x(int i) {
|
|
System.out.println(i);
|
|
}
|
|
}
|
|
class Clandestine {
|
|
void y(int i) {
|
|
System.out.println(i);
|
|
}
|
|
} |