blob: 4a1149dbc0178acfc602f42bf5236291079e915b [file] [log] [blame]
package p;
class A<S> {
int x;
}
class B<T> extends A<String> {
protected void m() {
super.x++;
}
}