summaryrefslogblamecommitdiff
path: root/test/files/run/t8266-octal-interp.scala
blob: f85ae0367dbc26853bb81e2034f0e1e284dfe8c5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                
trait X {
  def f = Seq(
    f"a\10c",
    f"a\11c",
    f"a\12c",
    f"a\15c",
    f"a\42c",
    f"a\134c",
    f"a\15151515c"
  )
}

object Test extends App with X {
  f foreach println
}