summaryrefslogtreecommitdiff
path: root/test/files/neg/t8015-ffb.scala
blob: dbdd942555110c5b0dd407c05ec3e9df6175974b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
trait G {
  val c: Char = '\u000a'   // disallowed!
  def x\u000d\u000a = 9    // as nl
  def y() = x
  def z() = {
    y()\u000a()           // was Int does not take parameters
  }
  def v = y()\u000c()     // was Int does not take parameters
  def w = { x() }       // ^L is colored blue on this screen, hardly visible
}