summaryrefslogblamecommitdiff
path: root/test/files/pos/t6210.scala
blob: 855c621b8e395146ea6e234138475d27fefea1eb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                          
                                                  
 
                                            





                                                                                                           
abstract sealed trait AST
abstract sealed trait AExpr                  extends AST
case class AAssign(name: String, v: AExpr)   extends AExpr
case class AConstBool(v: Boolean)            extends AExpr

trait Ty {}
case class TInt() extends Ty
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 AConstBool(v: Boolean) => TBool()

      case _                          => throw new Exception(s"Unhandled case check(ast: ${ast.getClass})")
    }
    astTy
  }
}