summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
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