aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/complexity/lettuple.v2
-rw-r--r--test-suite/coqdoc/links.v8
2 files changed, 6 insertions, 4 deletions
diff --git a/test-suite/complexity/lettuple.v b/test-suite/complexity/lettuple.v
index f97decf0ae..0690459fc8 100644
--- a/test-suite/complexity/lettuple.v
+++ b/test-suite/complexity/lettuple.v
@@ -26,4 +26,4 @@ Definition f (x : nat * nat) :=
let (a,b) := x in
0.
-Timeout 5 Print f.
+Timeout 5 Time Print f.
diff --git a/test-suite/coqdoc/links.v b/test-suite/coqdoc/links.v
index b09d64a9a6..16028fe17d 100644
--- a/test-suite/coqdoc/links.v
+++ b/test-suite/coqdoc/links.v
@@ -19,7 +19,9 @@ Notation "n ++ m" := (plus n m).
Notation "n ++ m" := (mult n m). (* redefinition *)
-Notation "n % m" := (plus n m) (at level 60).
+Notation "n ** m" := (plus n m) (at level 60).
+
+Notation "n ▵ m" := (plus n m) (at level 60).
Notation "n '_' ++ 'x' m" := (plus n m) (at level 3).
@@ -31,7 +33,7 @@ Definition eq0 := 0 = 0 :> nat.
Notation "( x # y ; .. ; z )" := (pair .. (pair x y) .. z).
-Definition p := ((0#0;0) , (0 % 0)).
+Definition b_α := ((0#0;0) , (0 ** 0)).
Notation h := a.
@@ -39,7 +41,7 @@ Notation h := a.
Variables b' b2: nat.
- Notation "n + m" := (plus n m) : my_scope.
+ Notation "n + m" := (n ▵ m) : my_scope.
Delimit Scope my_scope with my.