-
Notifications
You must be signed in to change notification settings - Fork 167
Datatype diverges #258
Copy link
Copy link
Closed
Labels
Description
The following session appears to diverge.
val it = ``:num``: hol_type
> val num = numSyntax.num;
val num = ``:num``: hol_type
> val _ = Datatype`num = Foo ^num | Bar`;
This one, however, converges quickly:
> val num = numSyntax.num;
val num = ``:num``: hol_type
> val _ = Hol_datatype`num = Foo of ^num | Bar`;
<<HOL message: Defined type: "num">>
Probably related to #257
Reactions are currently unavailable