blob: 7157c8211c89af75f1afe7a29eafa3d56c880816 [file] [log] [blame]
// "Create Constructor" "true"
public class Test {
public void main2() {
new MyCollection(this);
}
}
class MyCollection {
public MyCollection(Test test) {
}
}