blob: 69cf77793dfeda9b367a5c92c0371e95a6b340e6 [file] [log] [blame]
class Generic<T> {
Generic() {}
}
class Test {
void foo () {
Generic g = new Generic ();
if (g instanceof Generic<String>) {
return;
}
}
}