From 123760edebb959c1142af8270b0f25b5642703c3 Mon Sep 17 00:00:00 2001 From: Philipp Haller Date: Fri, 1 Feb 2008 15:35:35 +0000 Subject: Removed unchecked warning from 'patmatnew' --- test/files/run/patmatnew.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/files') 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) } } -- cgit v1.2.3