summaryrefslogtreecommitdiff
path: root/test/files/positions/Anon.scala
blob: 65eb7ae477f9bdf4228e058883447c3ff27b6419 (plain) (blame)
1
2
3
4
5
6
7
8
9
object Anon {
  trait Foo {
	val bar : Int
  }
  
  def foo = new Foo {
	override val bar = 23
  }
}