18 lines
156 B
Plaintext
18 lines
156 B
Plaintext
|
public class Constr{
|
||
|
String name;
|
||
|
public Constr(x){
|
||
|
name=x;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public class Test{
|
||
|
|
||
|
public void test(){
|
||
|
a;
|
||
|
Constr x;
|
||
|
x=new Constr(a);
|
||
|
}
|
||
|
|
||
|
}
|