summaryrefslogtreecommitdiff
path: root/test/files/t8449/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/t8449/Test.java')
-rw-r--r--test/files/t8449/Test.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/t8449/Test.java b/test/files/t8449/Test.java
new file mode 100644
index 0000000000..ecb1711b24
--- /dev/null
+++ b/test/files/t8449/Test.java
@@ -0,0 +1,10 @@
+public class Test {
+ // Raw type over a Scala type constructor
+ public scala.Function1 foo() { return null; }
+ // scalac reported:
+ // % scalac-hash v2.11.2 -d /tmp sandbox/{Test.java,Client.scala}
+ // sandbox/Test.java:2: error: trait Function1 takes type parameters
+ // public scala.Function1 foo() { return null; }
+ // ^
+ // one error found
+}