Files
2022-07-27 10:00:32 +00:00

12 lines
268 B
Java

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