summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-06-30 23:56:32 +0000
committerPaul Phillips <paulp@improving.org>2010-06-30 23:56:32 +0000
commit574f77446b87425744b20b3d43c0cc05fae2e03e (patch)
tree2d5904797ebb9fee65535c9bd60395d65e3a970b /test
parent12c8a6113e2a0de6669f850068d3b40fc2015bf6 (diff)
downloadscala-574f77446b87425744b20b3d43c0cc05fae2e03e.tar.gz
scala-574f77446b87425744b20b3d43c0cc05fae2e03e.tar.bz2
scala-574f77446b87425744b20b3d43c0cc05fae2e03e.zip
Test case closes #3440. No review.
Diffstat (limited to 'test')
-rw-r--r--test/files/pos/bug3440.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/pos/bug3440.scala b/test/files/pos/bug3440.scala
new file mode 100644
index 0000000000..026abfea1f
--- /dev/null
+++ b/test/files/pos/bug3440.scala
@@ -0,0 +1,18 @@
+object test {
+ abstract class SampleFormat1 {
+ def readerFactory: Any
+ }
+
+ case object Int8 extends SampleFormat1 {
+ def readerFactory = error("")
+ }
+ case object Int16 extends SampleFormat1 {
+ def readerFactory = error("")
+ }
+
+ (new {}: Any) match {
+ case 8 => Int8
+ case 16 => Int16
+ case _ => error("")
+ }
+} \ No newline at end of file