summaryrefslogtreecommitdiff
path: root/test/files/neg/t8266-invalid-interp.scala
blob: 4b26546880a371dff8a708ae6dd7418faa97e5d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
trait X {
  def f = Seq(
    f"a\",
    f"a\xc",
    // following could suggest \u000b for vertical tab, similar for \a alert
    f"a\vc"
  )
}