blob: 3d3c223e72605f2d186adce7ed282729ff2f4827 [file] [log] [blame]
// "Change type arguments to <String>" "false"
class Generic<E> {
Generic(E arg, int i) {
}
}
class Tester {
void method() {
new Generic<String>(<caret>"hi", "");
}
}