aboutsummaryrefslogblamecommitdiff
path: root/tests/run/t8015-ffc.scala
blob: f458cc2acb46a5c00b60118a02cd9aa31dfe8452 (plain) (tree)
1
2
3
4
5
6
7






                                                            
object Test extends dotty.runtime.LegacyApp {
  val ms = """This is a long multiline string
  with \u000d\u000a CRLF embedded."""
  assert(ms.lines.size == 3, s"lines.size ${ms.lines.size}")
  assert(ms contains "\r\n CRLF", "no CRLF")
}