From 90f430bfb9178e49dc112bacf5b250d0780dcd1e Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Sun, 16 Mar 2014 21:42:10 +0100 Subject: More tests which all pass. --- tests/pos/t0710.scala | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/pos/t0710.scala (limited to 'tests/pos/t0710.scala') diff --git a/tests/pos/t0710.scala b/tests/pos/t0710.scala new file mode 100644 index 000000000..d550d63f9 --- /dev/null +++ b/tests/pos/t0710.scala @@ -0,0 +1,10 @@ +object t0710 { + def method: Unit = { + sealed class Parent + case object Child extends Parent + val x: Parent = Child + x match { + case Child => () + } + } +} -- cgit v1.2.3