From d65e4220320ecce840fb49a195b329cfa50f702d Mon Sep 17 00:00:00 2001 From: Lex Spoon Date: Tue, 4 Sep 2007 08:22:41 +0000 Subject: Renamed Trac bug reports according to the t####... Renamed Trac bug reports according to the t#### convention --- test/pending/run/bugtr0005.check | 1 - test/pending/run/bugtr0005.scala | 47 ---------------------------------------- test/pending/run/bugtr0048.check | 1 - test/pending/run/bugtr0048.scala | 13 ----------- test/pending/run/t0005.check | 1 + test/pending/run/t0005.scala | 47 ++++++++++++++++++++++++++++++++++++++++ test/pending/run/t0048.check | 1 + test/pending/run/t0048.scala | 13 +++++++++++ 8 files changed, 62 insertions(+), 62 deletions(-) delete mode 100644 test/pending/run/bugtr0005.check delete mode 100644 test/pending/run/bugtr0005.scala delete mode 100644 test/pending/run/bugtr0048.check delete mode 100644 test/pending/run/bugtr0048.scala create mode 100644 test/pending/run/t0005.check create mode 100644 test/pending/run/t0005.scala create mode 100644 test/pending/run/t0048.check create mode 100644 test/pending/run/t0048.scala diff --git a/test/pending/run/bugtr0005.check b/test/pending/run/bugtr0005.check deleted file mode 100644 index 1e8b314962..0000000000 --- a/test/pending/run/bugtr0005.check +++ /dev/null @@ -1 +0,0 @@ -6 diff --git a/test/pending/run/bugtr0005.scala b/test/pending/run/bugtr0005.scala deleted file mode 100644 index 9c86e8c559..0000000000 --- a/test/pending/run/bugtr0005.scala +++ /dev/null @@ -1,47 +0,0 @@ -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) - } -} - -*/ diff --git a/test/pending/run/bugtr0048.check b/test/pending/run/bugtr0048.check deleted file mode 100644 index 1e8b314962..0000000000 --- a/test/pending/run/bugtr0048.check +++ /dev/null @@ -1 +0,0 @@ -6 diff --git a/test/pending/run/bugtr0048.scala b/test/pending/run/bugtr0048.scala deleted file mode 100644 index 71f37d26e4..0000000000 --- a/test/pending/run/bugtr0048.scala +++ /dev/null @@ -1,13 +0,0 @@ -object A1 { - object A2 { - class X { def unapply(v : Int) = Some(v + 1) } - } -} - -object C { - def main(args: Array[String]) { - val q = new A1.A2.X - val res = 5 match { case q(x) => x } - println(res) - } -} diff --git a/test/pending/run/t0005.check b/test/pending/run/t0005.check new file mode 100644 index 0000000000..1e8b314962 --- /dev/null +++ b/test/pending/run/t0005.check @@ -0,0 +1 @@ +6 diff --git a/test/pending/run/t0005.scala b/test/pending/run/t0005.scala new file mode 100644 index 0000000000..9c86e8c559 --- /dev/null +++ b/test/pending/run/t0005.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) + } +} + +*/ diff --git a/test/pending/run/t0048.check b/test/pending/run/t0048.check new file mode 100644 index 0000000000..1e8b314962 --- /dev/null +++ b/test/pending/run/t0048.check @@ -0,0 +1 @@ +6 diff --git a/test/pending/run/t0048.scala b/test/pending/run/t0048.scala new file mode 100644 index 0000000000..71f37d26e4 --- /dev/null +++ b/test/pending/run/t0048.scala @@ -0,0 +1,13 @@ +object A1 { + object A2 { + class X { def unapply(v : Int) = Some(v + 1) } + } +} + +object C { + def main(args: Array[String]) { + val q = new A1.A2.X + val res = 5 match { case q(x) => x } + println(res) + } +} -- cgit v1.2.3