summaryrefslogtreecommitdiff
path: root/test/files/pos/t7364b/BadList_1.java
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-06-03 19:12:31 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-06-09 15:20:18 -0400
commit5c4be4057a8ececee7d260623fdc58f09ee4a09d (patch)
tree62f8b3540ada9c3422ba22908aa6be42b7a4624f /test/files/pos/t7364b/BadList_1.java
parentd70c0e344d420af1d8520b0a73109850f66c518c (diff)
downloadscala-5c4be4057a8ececee7d260623fdc58f09ee4a09d.tar.gz
scala-5c4be4057a8ececee7d260623fdc58f09ee4a09d.tar.bz2
scala-5c4be4057a8ececee7d260623fdc58f09ee4a09d.zip
SI-7364 Allow raw types in parent position in Java sources
To make this work, this commit simply restricts parent type argument inference to Scala source files. The surrounding code has also been refactored to avoid a var.
Diffstat (limited to 'test/files/pos/t7364b/BadList_1.java')
-rw-r--r--test/files/pos/t7364b/BadList_1.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/files/pos/t7364b/BadList_1.java b/test/files/pos/t7364b/BadList_1.java
new file mode 100644
index 0000000000..fbb428adba
--- /dev/null
+++ b/test/files/pos/t7364b/BadList_1.java
@@ -0,0 +1,3 @@
+public class BadList_1 extends java.util.ArrayList {
+ public java.util.ArrayList foo() { return null; }
+}