JavaTXCompilerInJavaTXNoMaven/resources/AllgemeinTest/UseWildcardPair.jav

12 lines
199 B
Plaintext
Raw Normal View History

2024-05-02 21:04:07 +00:00
import java.util.Vector;
import java.lang.Boolean;
class UseWildcardPair{
void m(Pair<?, ?> p, Vector<?> b)
{
p.compare(p); //1, type incorrect
p.compare(p.make(b)); //2, OK
}
}