summaryrefslogtreecommitdiff
path: root/test/files/run/t4119/J.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t4119/J.java')
-rw-r--r--test/files/run/t4119/J.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/run/t4119/J.java b/test/files/run/t4119/J.java
new file mode 100644
index 0000000000..ee65d33e22
--- /dev/null
+++ b/test/files/run/t4119/J.java
@@ -0,0 +1,7 @@
+package foo.bar;
+
+public abstract class J {
+ protected void foo(J j) {
+ return;
+ }
+}