aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t8266-octal-interp.scala
blob: 8163ad585f01c72aa5fc8e05439d876295ca8940 (plain) (blame)
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 dotty.runtime.LegacyApp with X {
  f foreach println
}