summaryrefslogtreecommitdiff
path: root/test/files/run/patmat-bind-typed.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/patmat-bind-typed.scala')
-rw-r--r--test/files/run/patmat-bind-typed.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/run/patmat-bind-typed.scala b/test/files/run/patmat-bind-typed.scala
new file mode 100644
index 0000000000..10de921c51
--- /dev/null
+++ b/test/files/run/patmat-bind-typed.scala
@@ -0,0 +1,8 @@
+object Test {
+ def f(xs: List[Any]) = for (key @ (dummy: String) <- xs) yield key
+
+ def main(args: Array[String]): Unit = {
+ f("abc" :: Nil) foreach println
+ f(5 :: Nil) foreach println
+ }
+}