Test data fixed
This commit is contained in:
+1
-5
@@ -4,16 +4,12 @@ public interface MethodTypeParameterErased {
|
||||
|
||||
public interface Bug<T> {
|
||||
<RET extends Bug<T>> RET save();
|
||||
void foo();
|
||||
}
|
||||
|
||||
public abstract class SubBug implements Bug<Object> {
|
||||
public class SubBug implements Bug<Object> {
|
||||
public SubBug save() {
|
||||
return this;
|
||||
}
|
||||
|
||||
public void foo() {}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user