aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t1107b/O.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t1107b/O.scala')
-rw-r--r--tests/pos/t1107b/O.scala13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/pos/t1107b/O.scala b/tests/pos/t1107b/O.scala
new file mode 100644
index 000000000..019886770
--- /dev/null
+++ b/tests/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
+ }
+}