summaryrefslogtreecommitdiff
path: root/test/files/neg/t6013/Base.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t6013/Base.java')
-rw-r--r--test/files/neg/t6013/Base.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t6013/Base.java b/test/files/neg/t6013/Base.java
index b73d7fd821..ce6ee47e64 100644
--- a/test/files/neg/t6013/Base.java
+++ b/test/files/neg/t6013/Base.java
@@ -2,7 +2,7 @@ abstract public class Base {
// This must considered to be overridden by Abstract#foo based
// on the erased signatures. This special case is handled by
// `javaErasedOverridingSym` in `RefChecks`.
- public abstract void bar(java.util.List<java.lang.String> foo) { return; }
+ public void bar(java.util.List<java.lang.String> foo) { return; }
// But, a concrete method in a Java superclass must not excuse
// a deferred method in the Java subclass!