summaryrefslogtreecommitdiff
path: root/test/files/resident/bug735/ScalaExpressions.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/resident/bug735/ScalaExpressions.scala')
-rw-r--r--test/files/resident/bug735/ScalaExpressions.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/resident/bug735/ScalaExpressions.scala b/test/files/resident/bug735/ScalaExpressions.scala
new file mode 100644
index 0000000000..aacc412b68
--- /dev/null
+++ b/test/files/resident/bug735/ScalaExpressions.scala
@@ -0,0 +1,11 @@
+package bug735;
+trait ScalaExpressions {
+ trait ExpressionFactory {
+ def foo = 10;
+ def bar : Int;
+ }
+ val values : ValueFactory;
+ trait ValueFactory extends ExpressionFactory {
+ def bar = 42;
+ }
+}