summaryrefslogtreecommitdiff
path: root/test/files/run/patmatnew.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/patmatnew.scala')
-rw-r--r--test/files/run/patmatnew.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/patmatnew.scala b/test/files/run/patmatnew.scala
index e80c85191a..51c823f7ac 100644
--- a/test/files/run/patmatnew.scala
+++ b/test/files/run/patmatnew.scala
@@ -779,7 +779,7 @@ object Test extends TestConsoleMain {
object Ticket37 extends TestCase("#37") {
def foo() {}
- val (a,b):(int,int) = { foo(); (2,3) }
+ val (a,b) = { foo(); (2,3) }
override def runTest { assertEquals(this.a, 2) }
}