blob: 48aa25488c6a2441f1f78de275ed4624d33032c3 [file] [log] [blame]
// "Create Class 'MyInteger'" "true"
public class Test {
public static void main() {
int xxx = 3;
Integer i = new MyInteger(xxx);
}
}
public class MyInteger {
public MyInteger(int xxx) {<caret>
}
}