chore: fix test
This commit is contained in:
parent
109be66092
commit
dda1fd27c4
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ def weird1 (c : Bool) : (cond c List Array) Nat :=
|
|||
def compatible (declName₁ declName₂ : Name) : MetaM Unit := do
|
||||
let type₁ ← getDeclLCNFType declName₁
|
||||
let type₂ ← getDeclLCNFType declName₂
|
||||
unless (← compatibleTypes type₁ type₂) do
|
||||
unless compatibleTypes type₁ type₂ do
|
||||
throwError "{declName₁} : {← ppExpr type₁}\ntype is not compatible with\n{declName₂} : {← ppExpr type₂}"
|
||||
|
||||
axiom monadList₁.{u} : Monad List.{u}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue