aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t3037.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t3037.scala')
-rw-r--r--tests/pos/t3037.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/pos/t3037.scala b/tests/pos/t3037.scala
new file mode 100644
index 000000000..b71ffe041
--- /dev/null
+++ b/tests/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)
+}