JavaPatternMatching/bin/mycompiler/test/trivial/TestConstructor.jav

20 lines
252 B
Plaintext
Raw Normal View History

2013-10-18 11:33:46 +00:00
import java.util.Stack;
public class TestConstructor {
Integer i;
Stack s;
public TestConstructor() {
i=3;
s=new Stack();
}
public TestConstructor(a) {
a=4;
}
public TestConstructor(java.lang.Integer a, Stack b) {
i=a;
s=b;
}
}