summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSom Snytt <som.snytt@gmail.com>2014-09-24 10:31:33 -0700
committerSom Snytt <som.snytt@gmail.com>2015-03-09 17:07:32 -0700
commitd04cd7b39107fb7cb817a08265724c00043b1396 (patch)
treec89aba4a90616bce4b25164fcb66d229450dfdc1 /test
parente8e9c0d6b9181be657a1d28eef9f999cb26df9e5 (diff)
downloadscala-d04cd7b39107fb7cb817a08265724c00043b1396.tar.gz
scala-d04cd7b39107fb7cb817a08265724c00043b1396.tar.bz2
scala-d04cd7b39107fb7cb817a08265724c00043b1396.zip
SI-8861 Handle alias when probing for Any
If args to a method are alias types, dealias to see if they contain Any before warning about inferring it. Similarly for return and expected types.
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/t8861.flags1
-rw-r--r--test/files/pos/t8861.scala11
2 files changed, 12 insertions, 0 deletions
diff --git a/test/files/pos/t8861.flags b/test/files/pos/t8861.flags
new file mode 100644
index 0000000000..99a6391058
--- /dev/null
+++ b/test/files/pos/t8861.flags
@@ -0,0 +1 @@
+-Xlint:infer-any -Xfatal-warnings
diff --git a/test/files/pos/t8861.scala b/test/files/pos/t8861.scala
new file mode 100644
index 0000000000..816d15700e
--- /dev/null
+++ b/test/files/pos/t8861.scala
@@ -0,0 +1,11 @@
+
+trait Test {
+ type R = PartialFunction[Any, Unit]
+
+ val x: R = { case "" => }
+ val y: R = { case "" => }
+
+ val z: R = x orElse y
+ val zz = x orElse y
+}
+