JavaCompilerCore/examples/hoti/Constr.jav
2013-10-18 13:33:46 +02:00

18 lines
156 B
Java
Executable File

public class Constr{
String name;
public Constr(x){
name=x;
}
}
public class Test{
public void test(){
a;
Constr x;
x=new Constr(a);
}
}