blob: 51d8fd0bd3a03829d0a4b89836b3138919da8ce4 [file] [log] [blame]
package p;
public class DifferentArgs1_in {
private int fN;
public static DifferentArgs1_in createDifferentArgs1_in(int N) {
return new DifferentArgs1_in(N);
}
public DifferentArgs1_in(int N) {
fN= N;
}
public int get() {
return fN;
}
public void foo(String[] args) {
DifferentArgs1_in da= createDifferentArgs1_in(16);
System.out.println("Value = " + da.get());
}
public void bar(String[] args) {
DifferentArgs1_in da= createDifferentArgs1_in(24);
System.out.println("Value = " + da.get());
}
}