summaryrefslogtreecommitdiff
path: root/test/files/run/t5488-fn.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t5488-fn.scala')
-rw-r--r--test/files/run/t5488-fn.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/t5488-fn.scala b/test/files/run/t5488-fn.scala
index d17bcf90a5..e6efe176c7 100644
--- a/test/files/run/t5488-fn.scala
+++ b/test/files/run/t5488-fn.scala
@@ -4,7 +4,7 @@ class C[@specialized(Int, AnyRef) A, @specialized(Int, AnyRef) B, @specialized(I
object Test {
def main(args:Array[String]) {
def show(x: Any) = println(x.getClass.getName)
-
+
show(new B((x: Int) => 1))
show(new B((x: Int) => "abc"))
show(new B((x: Int) => ()))