mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
12 lines
230 B
Java
12 lines
230 B
Java
// "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>
|
|
}
|
|
} |