composOp should iterate under ImplArg

This commit is contained in:
krasimir
2010-05-28 12:19:04 +00:00
parent 38e04d0872
commit e4442d1328

View File

@@ -534,6 +534,10 @@ composOp co trm =
ELin c ty ->
do ty' <- co ty
return (ELin c ty')
ImplArg t ->
do t' <- co t
return (ImplArg t')
_ -> return trm -- covers K, Vr, Cn, Sort, EPatt