Avoid catch-all.

This commit is contained in:
Achim D. Brucker 2024-02-15 06:47:49 +00:00
parent ed2a15db5d
commit 566c97b41c
1 changed files with 1 additions and 1 deletions

View File

@ -1310,7 +1310,7 @@ ML
\<open> DOF_core.get_onto_class_name_global "requirement" @{theory};
Syntax.parse_typ @{context} "requirement";
val Type(t,_) = Syntax.parse_typ @{context} "requirement" handle ERROR _ => dummyT;
Syntax.read_typ @{context} "hypothesis" handle _ => dummyT;
Syntax.read_typ @{context} "hypothesis" handle ERROR _ => dummyT;
Proof_Context.init_global; \<close>
end