0
为什么以下不是类型检查(coq-8.5pl3)?模式匹配似乎忘记了u
和v
具有相同的类型。在同一索引处使用两个感应类型值匹配的模式
Inductive X : Type -> Type :=
| XId : forall a, X a -> X a
| XUnit : X unit.
Fixpoint f {a : Type} (x : X a) (y : X a) : a :=
match x, y with
| XId _ u, XId _ v => f u v
| XUnit, _ => tt
| _, XUnit => tt
end.
错误消息:
Error:
In environment
f : forall a : Type, X a -> X a -> a
a : Type
x : X a
y : X a
T : Type
u : X T
y0 : X T
T0 : Type
v : X T0
The term "v" has type "X T0"
while it is expected to have type "X T".
尝试搜索 “护航模式”[上SO](https://stackoverflow.com/search?tab=newest&q=%5bcoq%5d%20convoy%20pattern)或[CPDT](HTTP:/ /adam.chlipala.net/cpdt/html/MoreDep.html) –
这就是我一直在寻找的。谢谢! –