summaryrefslogtreecommitdiff
path: root/test/files/pos/strings.scala
blob: 83b8179706d97aa7c25a47cd6064c5c1ec76a8e7 (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"""") 
}