blob: 859150ca3937e82922d581180c6773faeb365eb5 [file] [log] [blame]
// "Create Inner Class 'Generic'" "true"
class Test {
Test() {
this (new <caret>Generic<String> ());
}
Test(String s){}
}