diff options
Diffstat (limited to 'test-suite/output/Cases.v')
-rw-r--r-- | test-suite/output/Cases.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test-suite/output/Cases.v b/test-suite/output/Cases.v index 7483e8c4..452d3603 100644 --- a/test-suite/output/Cases.v +++ b/test-suite/output/Cases.v @@ -1,5 +1,6 @@ (* Cases with let-in in constructors types *) -Inductive t : Set := k : [x:=t]x -> x. +Inductive t : Set := + k : let x := t in x -> x. Print t_rect. |