From 6eef38afc1eb6ffb7eda604607009ca154d5831d Mon Sep 17 00:00:00 2001 From: Iulian Dragos Date: Wed, 14 Dec 2005 17:01:30 +0000 Subject: Updated test files to reflex syntax changes and... Updated test files to reflex syntax changes and added test in try.scala. --- test-nsc/files/run/Course-2002-04.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test-nsc/files/run/Course-2002-04.scala') diff --git a/test-nsc/files/run/Course-2002-04.scala b/test-nsc/files/run/Course-2002-04.scala index 31aaa44c23..48d14d9125 100755 --- a/test-nsc/files/run/Course-2002-04.scala +++ b/test-nsc/files/run/Course-2002-04.scala @@ -19,7 +19,7 @@ object M0 { } def test = { - val isort = quicksort[Int]((x,y) => x < y); + val isort: List[Int] => List[Int] = quicksort[Int]((x,y) => x < y); val list0 = List(6,3,1,8,7,1,2,5,8,4,3,4,8); val list1 = quicksort[Int]((x,y) => x < y)(list0); val list2 = quicksort[Int]((x,y) => x < y)(list1); -- cgit v1.2.3