Files
2022-07-27 10:00:32 +00:00

13 lines
316 B
Java

// "Create inner class 'MyArrayList'" "true-preview"
import java.util.*;
public class Test {
public static void main() {
ArrayList list = new MyArrayList(1, "test");
}
private static class MyArrayList extends ArrayList {
public MyArrayList(int i, String test) {<caret>
}
}
}