summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug421.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2006-03-31 10:36:49 +0000
committerMartin Odersky <odersky@gmail.com>2006-03-31 10:36:49 +0000
commit3049afc7ec7ca038dd8d68d26803c0733df01ee1 (patch)
tree0a41f798b75b4aef55ab00e645cc77b6cdb0be69 /test/pending/pos/bug421.scala
parent7ff239d7a998fb0ef7443e6c2020b6dcb64dabdd (diff)
downloadscala-3049afc7ec7ca038dd8d68d26803c0733df01ee1.tar.gz
scala-3049afc7ec7ca038dd8d68d26803c0733df01ee1.tar.bz2
scala-3049afc7ec7ca038dd8d68d26803c0733df01ee1.zip
fixed several old bugs
Diffstat (limited to 'test/pending/pos/bug421.scala')
-rw-r--r--test/pending/pos/bug421.scala8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pending/pos/bug421.scala b/test/pending/pos/bug421.scala
new file mode 100644
index 0000000000..3e014b7500
--- /dev/null
+++ b/test/pending/pos/bug421.scala
@@ -0,0 +1,8 @@
+object foo {
+ case class Bar(a:String, b:Object, c:String*);
+
+ Bar("foo","meets","bar") match {
+ case Bar("foo",_*) => error("huh?");
+ }
+
+}