aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t0710.scala
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-03-16 21:42:10 +0100
committerTobias Schlatter <tobias@meisch.ch>2014-03-21 11:28:30 +0100
commit90f430bfb9178e49dc112bacf5b250d0780dcd1e (patch)
tree49fef9cac0869ae34f33c964c38089ddbb9d1689 /tests/pos/t0710.scala
parent7bf837c79315e5db7e049f3ffeb6c6842d18880c (diff)
downloaddotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.tar.gz
dotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.tar.bz2
dotty-90f430bfb9178e49dc112bacf5b250d0780dcd1e.zip
More tests
which all pass.
Diffstat (limited to 'tests/pos/t0710.scala')
-rw-r--r--tests/pos/t0710.scala10
1 files changed, 10 insertions, 0 deletions
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 => ()
+ }
+ }
+}