2009-03-25 10:29:28 +00:00
|
|
|
/*
|
2009-08-27 18:08:27 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2009-03-25 10:29:28 +00:00
|
|
|
* @bug 6400189
|
|
|
|
* @summary raw types and inference
|
|
|
|
* @author mcimadamore
|
|
|
|
* @compile/fail/ref=T6400189b.out T6400189b.java -Xlint:unchecked -XDrawDiagnostics
|
|
|
|
*/
|
|
|
|
|
|
|
|
class T6400189b<T> {
|
|
|
|
|
|
|
|
static class A {
|
|
|
|
<T> T m(T6400189b<T> x) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static class B<T> extends A {
|
|
|
|
<T> T m(T6400189b<T> x) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void test(B b) {
|
|
|
|
Integer i = b.m(new T6400189b<Integer>());
|
|
|
|
}
|
|
|
|
}
|