From d492b489b176a3d2a4da0d199756af86514be352 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Mon, 28 Jul 2008 10:00:31 +0000 Subject: fixed #842, #945, #83, #996, #1016, + some perf... fixed #842, #945, #83, #996, #1016, + some performace tuning. --- test/files/pos/t0872.scala | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 test/files/pos/t0872.scala (limited to 'test/files/pos') diff --git a/test/files/pos/t0872.scala b/test/files/pos/t0872.scala new file mode 100755 index 0000000000..8f4c1c4436 --- /dev/null +++ b/test/files/pos/t0872.scala @@ -0,0 +1,8 @@ +object Main { + def main(args : Array[String]) { + val fn = (a : Int, str : String) => "a: " + a + ", str: " + str + implicit def fx[T](f : (T,String) => String) = (x:T) => f(x,null) + println(fn(1)) + () + } +} -- cgit v1.2.3