class Par<U> {
    U f;
}

class Cls<T> {
    Cls(T t) {}
}

public class Test70  {
    public static void test() {
        Par<?> a = new Par<>();
        new Cls<>(a.f) { };
    }
}

