summaryrefslogtreecommitdiff
path: root/test/files/pos/t698.scala
blob: 00b37079767e0c8842ccb3d970faa840f015dd98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
abstract class Foo
{
        val x : Bar
}

abstract class Bar

object Test
        extends Foo with App
{
        object x extends Bar
}