summaryrefslogtreecommitdiff
path: root/test/files/positions/Anon.scala
blob: 940fff035a978a1a5927361418b145e27ae52c58 (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
  }
}