summaryrefslogtreecommitdiff
path: root/test/files/neg/t997.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t997.scala')
-rw-r--r--test/files/neg/t997.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/neg/t997.scala b/test/files/neg/t997.scala
index e8d10f4317..1198738f24 100644
--- a/test/files/neg/t997.scala
+++ b/test/files/neg/t997.scala
@@ -1,5 +1,5 @@
// An extractor with 2 results
-object Foo { def unapply(x : String) = Some(Pair(x, x)) }
+object Foo { def unapply(x : String) = Some((x, x)) }
object Test extends App {