mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 3a473c492e709a280d8a06e7364a2af05babf37f
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) {
|
|
|
|
}
|
|
} |