summaryrefslogtreecommitdiff
path: root/test/files/pos/t3037.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3037.scala')
-rw-r--r--test/files/pos/t3037.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/pos/t3037.scala b/test/files/pos/t3037.scala
new file mode 100644
index 0000000000..b71ffe0418
--- /dev/null
+++ b/test/files/pos/t3037.scala
@@ -0,0 +1,13 @@
+package test
+
+object A {
+ println(("a" match {
+ case "a" => 1
+ case _ => "a"
+ }).asInstanceOf[Object])
+ def foo[T](x: T) = x
+ var x: Int = 1
+ var y: Long = 1L
+ x = foo(x)
+ y = foo(y)
+}