8 lines
85 B
Java
Vendored
8 lines
85 B
Java
Vendored
class C {
|
|
public Object x;
|
|
|
|
public C(String x) {
|
|
this.x = x;
|
|
}
|
|
}
|