summaryrefslogtreecommitdiff
path: root/test/files/res/bug743
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/bug743
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/bug743')
-rw-r--r--test/files/res/bug743/BracesXXX.scala6
-rw-r--r--test/files/res/bug743/ParserXXX.scala15
2 files changed, 21 insertions, 0 deletions
diff --git a/test/files/res/bug743/BracesXXX.scala b/test/files/res/bug743/BracesXXX.scala
new file mode 100644
index 0000000000..8a2416caa8
--- /dev/null
+++ b/test/files/res/bug743/BracesXXX.scala
@@ -0,0 +1,6 @@
+package bug743;
+trait BracesXXX extends ParserXXX {
+ trait Matchable extends IsLinked {
+ def foo : NodeImpl = null;
+ }
+}
diff --git a/test/files/res/bug743/ParserXXX.scala b/test/files/res/bug743/ParserXXX.scala
new file mode 100644
index 0000000000..6ecf13c1e1
--- /dev/null
+++ b/test/files/res/bug743/ParserXXX.scala
@@ -0,0 +1,15 @@
+package bug743;
+trait ParserXXX {
+ val foo = null;
+ trait NodeImpl {
+ trait Link extends ParserXXX.this.Link {
+ val from = null;
+ }
+ }
+ trait Link {
+ val to0 = null;
+ }
+ trait IsLinked extends NodeImpl {
+ trait Link extends super.Link;
+ }
+}