summaryrefslogtreecommitdiff
path: root/test/pending/run/bugtr0005.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/bugtr0005.scala')
-rw-r--r--test/pending/run/bugtr0005.scala47
1 files changed, 47 insertions, 0 deletions
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)
+ }
+}
+
+*/