summaryrefslogtreecommitdiff
path: root/test/files/pos/t0774
diff options
context:
space:
mode:
authorGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-10-08 14:30:28 +0000
committerGeoffrey Washburn <geoffrey.washburn@epfl.ch>2008-10-08 14:30:28 +0000
commit29a8a8f77998b640f5083e87cd735301dd63922a (patch)
tree736f117d9efd23cea15393976a3066a01a78015d /test/files/pos/t0774
parentdbe66d06722cc31b7d898390315daf07daf05c54 (diff)
downloadscala-29a8a8f77998b640f5083e87cd735301dd63922a.tar.gz
scala-29a8a8f77998b640f5083e87cd735301dd63922a.tar.bz2
scala-29a8a8f77998b640f5083e87cd735301dd63922a.zip
Moved successful tests from pending.
Diffstat (limited to 'test/files/pos/t0774')
-rw-r--r--test/files/pos/t0774/deathname.scala0
-rw-r--r--test/files/pos/t0774/unrelated.scala9
2 files changed, 9 insertions, 0 deletions
diff --git a/test/files/pos/t0774/deathname.scala b/test/files/pos/t0774/deathname.scala
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/test/files/pos/t0774/deathname.scala
diff --git a/test/files/pos/t0774/unrelated.scala b/test/files/pos/t0774/unrelated.scala
new file mode 100644
index 0000000000..1efdb2505e
--- /dev/null
+++ b/test/files/pos/t0774/unrelated.scala
@@ -0,0 +1,9 @@
+object Outer {
+ import Inner._
+
+ deathname
+
+ object Inner {
+ def deathname: Int = 1
+ }
+}