mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-25 06:01:39 +07:00
0e1dd4d61b
GitOrigin-RevId: e7fea4d4b8c11d584d53bdf9450d4a29cfb19f6b
12 lines
238 B
Java
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>
|
|
}
|
|
} |