From 574f77446b87425744b20b3d43c0cc05fae2e03e Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Wed, 30 Jun 2010 23:56:32 +0000 Subject: Test case closes #3440. No review. --- test/files/pos/bug3440.scala | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 test/files/pos/bug3440.scala (limited to 'test') 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 -- cgit v1.2.3