blob: 33cb206d64cfe7dc664d006508c6318134a4d30e [file] [log] [blame]
public class DifferentArgs3_in {
private int fN;
public DifferentArgs3_in(int N) {
fN= N;
}
public int get() {
return fN;
}
public void foo(String[] args) {
int size;
DifferentArgs3_in da= createDifferentArgs3_in(size=16);
System.out.println("Value = " + da.get());
}
public void bar(String[] args) {
DifferentArgs3_in da= createDifferentArgs3_in(24);
System.out.println("Value = " + da.get());
}
public static DifferentArgs3_in createDifferentArgs3_in(int N) {
return new DifferentArgs3_in(N);
}
}