blob: 06e5a4f5b42da7b9100043ba7764d5c2ba26bb1f [file] [log] [blame]
import java.util.*;
class A {
private AGeneric<Collection> b = new AGeneric<Collection>();
private class <caret>AGeneric<T> {
private T myV;
public <X extends T> void parMethA(X p) {
myV = p;
}
private class Inner<Y extends T> {
private Y myY;
}
}
}