8 lines
81 B
Java
Vendored
8 lines
81 B
Java
Vendored
class C {
|
|
public int p;
|
|
|
|
public C(int p, C c) {
|
|
c.p = p;
|
|
}
|
|
}
|