summaryrefslogtreecommitdiff
path: root/test/files/res/t735/ScalaExpressions.scala
blob: f9c8ac733ca0b68098c04913254e29fa90f167e5 (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;
  }
}