summaryrefslogtreecommitdiff
path: root/test/pending/run
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-09-03 14:41:45 +0000
committerLex Spoon <lex@lexspoon.org>2007-09-03 14:41:45 +0000
commit8d8bbecc0830db2ad9a24c24376d5990efba5ea8 (patch)
tree0e8208372cd660ec96f627b9ab93c23e6a100fa8 /test/pending/run
parent5a9fbd9d954c53e5818d73bd912398f265d01067 (diff)
downloadscala-8d8bbecc0830db2ad9a24c24376d5990efba5ea8.tar.gz
scala-8d8bbecc0830db2ad9a24c24376d5990efba5ea8.tar.bz2
scala-8d8bbecc0830db2ad9a24c24376d5990efba5ea8.zip
Diffstat (limited to 'test/pending/run')
-rw-r--r--test/pending/run/bugtr0005.check1
-rw-r--r--test/pending/run/bugtr0005.scala47
2 files changed, 48 insertions, 0 deletions
diff --git a/test/pending/run/bugtr0005.check b/test/pending/run/bugtr0005.check
new file mode 100644
index 0000000000..1e8b314962
--- /dev/null
+++ b/test/pending/run/bugtr0005.check
@@ -0,0 +1 @@
+6
diff --git a/test/pending/run/bugtr0005.scala b/test/pending/run/bugtr0005.scala
new file mode 100644
index 0000000000..9c86e8c559
--- /dev/null
+++ b/test/pending/run/bugtr0005.scala
@@ -0,0 +1,47 @@
+object A1 {
+ object A2 {
+ class X { def unapply(v : Int) = Some(v + 1) }
+ }
+}
+
+object B1 {
+ object B2 {
+ val q = new A1.A2.X
+ }
+}
+
+object Test {
+ def main(args: Array[String]) {
+ import B1.B2.q
+ val res = 5 match { case q(x) => x }
+ println(res)
+ }
+}
+
+
+
+/*
+compiler crash:
+
+object A1 {
+ object A2 {
+ class X { def unapply(v : Int) = Some(v + 1) }
+ }
+}
+
+object B1 {
+ object B2 {
+ val q = new A1.A2.X
+ }
+}
+
+object C {
+ def main(args: Array[String]) {
+ //import B1.B2.q
+ val q = new A1.A2.X
+ val res = 5 match { case q(x) => x }
+ println(res)
+ }
+}
+
+*/