diff --git a/compiler/testData/loadJavaCustom/methodTypeParameterErased/MethodTypeParameterErased.java b/compiler/testData/loadJavaCustom/methodTypeParameterErased/MethodTypeParameterErased.java index 81f54e78c18..812309c07cd 100644 --- a/compiler/testData/loadJavaCustom/methodTypeParameterErased/MethodTypeParameterErased.java +++ b/compiler/testData/loadJavaCustom/methodTypeParameterErased/MethodTypeParameterErased.java @@ -4,16 +4,12 @@ public interface MethodTypeParameterErased { public interface Bug { > RET save(); - void foo(); } - public abstract class SubBug implements Bug { + public class SubBug implements Bug { public SubBug save() { return this; } - - public void foo() {} - } } \ No newline at end of file