summaryrefslogtreecommitdiff
path: root/test/files/run/t0883.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t0883.scala')
-rw-r--r--test/files/run/t0883.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/files/run/t0883.scala b/test/files/run/t0883.scala
index c8ed06dbfe..adde95197b 100644
--- a/test/files/run/t0883.scala
+++ b/test/files/run/t0883.scala
@@ -1,14 +1,14 @@
object Foo { def apply(x: String) = new Foo(x) }
class Foo(name: String)
case object Bar extends Foo("Bar")
-case class Baz() extends Foo("Baz")
+case class Baz() extends Foo("Baz")
object Test extends App {
- Foo("Bar") match {
- case Bar => println("What?")
+ Foo("Bar") match {
+ case Bar => println("What?")
case _ => println("OK")
}
- Foo("Baz") match {
- case Baz() => println("What?")
+ Foo("Baz") match {
+ case Baz() => println("What?")
case _ => println("OK")
- }
+ }
}