Files
2022-10-10 12:17:19 +00:00

12 lines
238 B
Java

// "Create class 'MyInteger'" "true-preview"
public class Test {
public static void main() {
int xxx = 3;
Integer i = new MyInteger(xxx);
}
}
public class MyInteger {
public MyInteger(int xxx) {<caret>
}
}