6 lines
108 B
Text
6 lines
108 B
Text
def foo (ty : Expr) : MetaM Expr :=
|
|
match_expr ty with
|
|
| Nat => sorry
|
|
| BitVec n => sorry
|
|
|
|
#check Nat
|