summaryrefslogtreecommitdiff
path: root/test/files/resident/bug735/ScalaExpressions.scala
blob: aacc412b680f48e18cc9a814719c62d44c2bc66c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package bug735;
trait ScalaExpressions {
  trait ExpressionFactory {
    def foo = 10;
    def bar : Int;
  }
  val values : ValueFactory;
  trait ValueFactory extends ExpressionFactory {
    def bar = 42;
  }
}