summaryrefslogtreecommitdiff
path: root/test/files/run/transpose.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/transpose.scala')
-rw-r--r--test/files/run/transpose.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/transpose.scala b/test/files/run/transpose.scala
index 2761a24ff5..3bea74b365 100644
--- a/test/files/run/transpose.scala
+++ b/test/files/run/transpose.scala
@@ -1,8 +1,8 @@
object Test {
- def wrap[T >: Null](body: => T) =
+ def wrap[T >: Null](body: => T) =
try body
catch { case _: IllegalArgumentException => null }
-
+
def main(args: Array[String]): Unit = {
assert(wrap(Nil.transpose) == Nil)
assert(wrap(List(List(1, 2), List(1)).transpose) == null)