summaryrefslogtreecommitdiff
path: root/test/files/res/bug785
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2006-11-29 13:11:31 +0000
committermichelou <michelou@epfl.ch>2006-11-29 13:11:31 +0000
commitf9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9 (patch)
tree46e7bc64451aec5325e0d06a671cd5b549ab29fd /test/files/res/bug785
parent50c411759b491a88d7ffca8fcda9bce9d22ac22c (diff)
downloadscala-f9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9.tar.gz
scala-f9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9.tar.bz2
scala-f9da023c4e7d57e38ba0041e0ee31b9ee46ec4a9.zip
renamed directory 'resident' to match '--res' o...
renamed directory 'resident' to match '--res' option
Diffstat (limited to 'test/files/res/bug785')
-rw-r--r--test/files/res/bug785/ScalaNewTyper.scala10
-rw-r--r--test/files/res/bug785/ScalaTrees.scala7
2 files changed, 17 insertions, 0 deletions
diff --git a/test/files/res/bug785/ScalaNewTyper.scala b/test/files/res/bug785/ScalaNewTyper.scala
new file mode 100644
index 0000000000..fb955572ed
--- /dev/null
+++ b/test/files/res/bug785/ScalaNewTyper.scala
@@ -0,0 +1,10 @@
+package bug785;
+trait ScalaNewTyper {
+ private var typed : String = null;
+ trait HasSymbol {
+ protected def foo : Unit = {}
+ }
+ trait HasArgsTypeParametersImpl extends HasSymbol {
+ private var argss : List[List[String]] = Nil;
+ }
+}
diff --git a/test/files/res/bug785/ScalaTrees.scala b/test/files/res/bug785/ScalaTrees.scala
new file mode 100644
index 0000000000..ade58e65c6
--- /dev/null
+++ b/test/files/res/bug785/ScalaTrees.scala
@@ -0,0 +1,7 @@
+package bug785;
+trait ScalaTrees extends ScalaNewTyper {
+ trait TraitClassImpl extends HasArgsTypeParametersImpl {
+ argss(null);
+ protected def argss(tree : String) : List[List[String]] = Nil;
+ }
+}