mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 12:50:18 +07:00
15 lines
184 B
Plaintext
15 lines
184 B
Plaintext
public class A {
|
|
int a;
|
|
|
|
public A (int a) {
|
|
this.a = a;
|
|
}
|
|
|
|
public class B {
|
|
int b;
|
|
|
|
public B (int b) {
|
|
this.b = b;
|
|
}
|
|
}
|
|
} |