blob: 1a68d8a4f9eab8ca6e3a5f60db9bde8620ede15a [file] [log] [blame]
// "Create Constructor" "true"
public class Test {
public static void main() {
new MyCollection(10);
}
}
class MyCollection {
public MyCollection() {
}
public MyCollection(int i) {
}
}