blob: 8d19d891088cb959ae7a4ff2f9846cbb81fc5720 [file] [log] [blame]
interface Intf<T> {
X<T> method(T value);
T get();
}
class Impl<V> implements Intf<V> {
public X<V> method(V value) {
V v = get();
return new X<V>(v,value);
}
}
class X {
}