2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2014-06-05 17:44:38 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 5029773
|
2014-06-05 17:44:38 +00:00
|
|
|
* @summary soundness problem with failure to substitute wildcard as type formal argument
|
2007-12-01 00:00:00 +00:00
|
|
|
* @author gafter
|
|
|
|
*
|
2014-06-05 17:44:38 +00:00
|
|
|
* @compile/fail/ref=Capture2.out -XDrawDiagnostics Capture2.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package capture2;
|
|
|
|
|
|
|
|
class R<T extends R<T>> {
|
|
|
|
T f() { return null; }
|
|
|
|
T t;
|
|
|
|
|
|
|
|
void x(R<?> r) {
|
|
|
|
this.t = r.f().t; // this should be an error!
|
|
|
|
}
|
|
|
|
}
|