summaryrefslogblamecommitdiff
path: root/test/files/pos/pos-bug1241.scala
blob: 1752208f376510a07df8f89f0c35d2c8b7a95efb (plain) (tree)
1
2
3
4
5
6
7
8
                         






                                                                   
object test extends App {
  // more..
  type T = { def hello() }
  //val x4 = new AnyRef { def hello() { println("4") } } // ok!
  val x4: T = new { def hello() { println("4") } }        // error!
  x4.hello()
  // more..
}