mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
301 B
Java
13 lines
301 B
Java
// "Create inner class 'MyCollection'" "true-preview"
|
|
import java.util.*;
|
|
|
|
public interface I {
|
|
public static void main() {
|
|
Collection c = new MyCollection(1, "test");
|
|
}
|
|
|
|
class MyCollection implements Collection {
|
|
public MyCollection(int i, String test) {
|
|
}
|
|
}
|
|
} |