mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 05:20:54 +07:00
15 lines
235 B
Java
15 lines
235 B
Java
// "Create constructor" "true-preview"
|
|
public class Test {
|
|
public static void main() {
|
|
new MyCollection(10);
|
|
}
|
|
}
|
|
|
|
class MyCollection {
|
|
public MyCollection() {
|
|
}
|
|
|
|
public MyCollection(int i) {
|
|
|
|
}
|
|
} |