18 lines
156 B
Plaintext
Raw Normal View History

2013-10-18 13:33:46 +02:00
public class Constr{
String name;
public Constr(x){
name=x;
}
}
public class Test{
public void test(){
a;
Constr x;
x=new Constr(a);
}
}