summaryrefslogblamecommitdiff
path: root/test/files/pos/array-interfaces.scala
blob: 70cafd2bb11a9964f5c840fff679752ff8058256 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                     
 




                                         
object s {
  def f(x: Cloneable) = ()
  def g(x: java.io.Serializable) = ()

  def main(args: Array[String]): Unit = {
    f(args)
    g(args)
  }
}