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







                                                                   
object test extends Application {
  // 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..
}