aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr105479/Driver.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs150/pr105479/Driver.java')
-rw-r--r--tests/bugs150/pr105479/Driver.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs150/pr105479/Driver.java b/tests/bugs150/pr105479/Driver.java
new file mode 100644
index 000000000..6bc4b1bfc
--- /dev/null
+++ b/tests/bugs150/pr105479/Driver.java
@@ -0,0 +1,10 @@
+public class Driver {
+
+ public static void main(String[] args) {
+ ReturnTypeTester rtt = new ReturnTypeTester();
+ rtt.hashCode();
+ System.out.println(rtt.getId());
+ if (rtt.hashCode() != "id".hashCode()) throw new RuntimeException("dispatch failure");
+ }
+
+} \ No newline at end of file