mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
15 lines
296 B
Java
15 lines
296 B
Java
// "Create class 'MyCollection'" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test extends Foo {
|
|
public void main() {
|
|
Collection c = new Foo.MyCollection(1);
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
public class MyCollection implements Collection {
|
|
public MyCollection(int i) {
|
|
}
|
|
}
|
|
} |