JavaCompilerCore/examples/hoti/Constr.jav

18 lines
156 B
Plaintext
Raw Normal View History

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