summaryrefslogtreecommitdiff
path: root/test/files/pos/strings.scala
blob: 9fe8cfd94b6f8cd369af29555be457083cac60c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
// martin 1-3-2002: it seems there is a problem with the way Serializable is loaded.
object test {

  def f() = "hello".concat("world");

}
// #1000
object A {
  println("""This a "raw" string ending with a "double quote"""")
}