summaryrefslogtreecommitdiff
path: root/test/files/pos/t0064.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t0064.scala')
-rw-r--r--test/files/pos/t0064.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t0064.scala b/test/files/pos/t0064.scala
index c2ce4bf6d0..1eeca8dcad 100644
--- a/test/files/pos/t0064.scala
+++ b/test/files/pos/t0064.scala
@@ -1,6 +1,6 @@
object B {
def main(Args:Array[String]) = {
- val Pair(_,x) = Pair(1,2);
+ val (_,x) = (1,2);
x + 1;
}
}