summaryrefslogtreecommitdiff
path: root/test/files/pos/t0625.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t0625.scala')
-rw-r--r--test/files/pos/t0625.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t0625.scala b/test/files/pos/t0625.scala
index 5614542599..bda463d6a6 100644
--- a/test/files/pos/t0625.scala
+++ b/test/files/pos/t0625.scala
@@ -1,6 +1,6 @@
object Test {
def idMap[C[_],T](m: { def map[U](f: T => U): C[U] }): C[T] = m.map(t => t)
-
+
def main(args: Array[String]): Unit = {
idMap(Some(5))
idMap(Responder.constant(5))