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