summaryrefslogtreecommitdiff
path: root/test/files/pos/t1000.scala
blob: fabef94fff2090470f9d0030aa76329a0917bfbc (plain) (blame)
1
2
3
4
5
6
7
8
object A {
  println("""This a "raw" string ending with a "double quote"""") 
}

object Test extends App {
  val xs = Array(1, 2, 3)
  Console.println(xs.filter(_ >= 0).length)
}