summaryrefslogtreecommitdiff
path: root/test/files/pos/t6210.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t6210.scala')
-rw-r--r--test/files/pos/t6210.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/pos/t6210.scala b/test/files/pos/t6210.scala
index 1ce8493872..855c621b8e 100644
--- a/test/files/pos/t6210.scala
+++ b/test/files/pos/t6210.scala
@@ -10,9 +10,9 @@ case class TBool() extends Ty
object Foo {
def checkExpr(ast: AExpr): Ty = {
var astTy:Ty = ast match {
- case AAssign(nm: String, v:AExpr) => TBool()
+ case AAssign(nm: String, v:AExpr) => TBool()
- case AConstBool(v: Boolean) => TBool()
+ case AConstBool(v: Boolean) => TBool()
case _ => throw new Exception(s"Unhandled case check(ast: ${ast.getClass})")
}