aboutsummaryrefslogblamecommitdiff
path: root/tests/run/transpose.scala
blob: 2761a24ff5bfc7fb204e2823f7fa58625a751ce8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                                                        
object Test {
  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)
    assert(wrap(List(List(1), List(1, 2)).transpose) == null)
    assert(wrap(List(List(1, 2), List(1, 2)).transpose) == List(List(1, 1), List(2, 2)))
  }
}