summaryrefslogtreecommitdiff
path: root/test/files/pos/t1107b/O.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1107b/O.scala')
-rw-r--r--test/files/pos/t1107b/O.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/files/pos/t1107b/O.scala b/test/files/pos/t1107b/O.scala
new file mode 100644
index 0000000000..aa605a6d09
--- /dev/null
+++ b/test/files/pos/t1107b/O.scala
@@ -0,0 +1,13 @@
+object O
+{
+ def d(t: Top) = t match {
+ case s: Sub => true
+ case _ => false
+ }
+
+ def main(args: Array[String]): Unit = {
+ val c = new AnyRef with C
+
+ c.bob.toString + c.bob2.toString
+ }
+}