summaryrefslogtreecommitdiff
path: root/test/files/run/transpose.scala
blob: 3bea74b3656270bf885a275dc22e67d640b6b0a9 (plain) (blame)
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)))
  }
}