aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/interfaceObject.scala
blob: e4d8b89a8f1435948b87216b1fb3de96b0d68c08 (plain) (blame)
1
2
3
4
5
6
trait A{
  object O
}
class B extends A {
  def foo = O
}