summaryrefslogtreecommitdiff
path: root/test/files/pos/t1459/Caller.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1459/Caller.java')
-rwxr-xr-xtest/files/pos/t1459/Caller.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/files/pos/t1459/Caller.java b/test/files/pos/t1459/Caller.java
new file mode 100755
index 0000000000..4ae51d8c57
--- /dev/null
+++ b/test/files/pos/t1459/Caller.java
@@ -0,0 +1,7 @@
+package base;
+
+public class Caller {
+ public void callDoStuff(AbstractBase impl) {
+ impl.doStuff("abc"); // was new Object());
+ }
+} \ No newline at end of file