summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2008-02-01 15:35:35 +0000
committerPhilipp Haller <hallerp@gmail.com>2008-02-01 15:35:35 +0000
commit123760edebb959c1142af8270b0f25b5642703c3 (patch)
tree66e5ae0b41db0b810265e37511b93f5a8cddb5b3 /test/files
parent2e9f2110ccbd8d05a651a2355cc6f2fa6bf8aa01 (diff)
downloadscala-123760edebb959c1142af8270b0f25b5642703c3.tar.gz
scala-123760edebb959c1142af8270b0f25b5642703c3.tar.bz2
scala-123760edebb959c1142af8270b0f25b5642703c3.zip
Removed unchecked warning from 'patmatnew'
Diffstat (limited to 'test/files')
-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) }
}