summaryrefslogtreecommitdiff
path: root/test/files/pos/switchUnbox.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/switchUnbox.scala')
-rw-r--r--test/files/pos/switchUnbox.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/switchUnbox.scala b/test/files/pos/switchUnbox.scala
index a97bff5521..4f5467de29 100644
--- a/test/files/pos/switchUnbox.scala
+++ b/test/files/pos/switchUnbox.scala
@@ -2,7 +2,7 @@
// that contains -Xsqueeze:on
//
object Foo {
- var xyz: (int, String) = (1, "abc")
+ var xyz: (Int, String) = (1, "abc")
xyz._1 match {
case 1 => Console.println("OK")
case 2 => Console.println("OK")