2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2015-05-15 16:53:08 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4717181
|
|
|
|
* @summary javac treats inherited abstract method as an overrider
|
|
|
|
* @author gafter
|
|
|
|
*
|
2015-05-15 16:53:08 +00:00
|
|
|
* @compile/fail/ref=T4717181c.out -XDrawDiagnostics T4717181c.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class T4717181c {
|
|
|
|
static abstract class A<T> {
|
|
|
|
abstract void f(T t);
|
|
|
|
abstract int f(Integer t);
|
|
|
|
}
|
|
|
|
static abstract class B extends A<Integer> {}
|
|
|
|
}
|