summaryrefslogblamecommitdiff
path: root/test/files/neg/t1241.scala
blob: e115917136c5b4cf30a0bdd5091f0f1744e35649 (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 = new T { def hello() { println("4") } }        // error!
  x4.hello()
  // more..
}