summaryrefslogtreecommitdiff
path: root/test-suite/output/PrintInfos.out
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/output/PrintInfos.out')
-rw-r--r--test-suite/output/PrintInfos.out9
1 files changed, 5 insertions, 4 deletions
diff --git a/test-suite/output/PrintInfos.out b/test-suite/output/PrintInfos.out
index 40c786ab..598bb728 100644
--- a/test-suite/output/PrintInfos.out
+++ b/test-suite/output/PrintInfos.out
@@ -37,10 +37,11 @@ When applied to no arguments:
When applied to 1 argument:
Argument A is implicit
plus =
-fix plus (n m : nat) : nat := match n with
- | 0 => m
- | S p => S (plus p m)
- end
+fix plus (n m : nat) {struct n} : nat :=
+ match n with
+ | 0 => m
+ | S p => S (plus p m)
+ end
: nat -> nat -> nat
Argument scopes are [nat_scope nat_scope]