blob: 801e9f69ef4f91dfa09c3b980e5fb4b79bf3500d [file] [log] [blame]
// "Create Inner Class 'Generic'" "true"
class Test {
Test() {
this (new Generic<String> ());
}
Test(String s){}
private static class Generic<T> {
}
}