aboutsummaryrefslogtreecommitdiff
path: root/test-suite/success
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite/success')
-rw-r--r--test-suite/success/primitiveproj.v25
1 files changed, 16 insertions, 9 deletions
diff --git a/test-suite/success/primitiveproj.v b/test-suite/success/primitiveproj.v
index 74083ac89e..068f8ac3cc 100644
--- a/test-suite/success/primitiveproj.v
+++ b/test-suite/success/primitiveproj.v
@@ -115,22 +115,22 @@ Unset Printing All.
(** Explicit version of the primitive projection, under applied w.r.t implicit arguments
can be printed only using projection notation. r.(@p) *)
-Check r.(@p).
+Check r.(@p _).
Set Printing Projections.
-Check r.(@p).
+Check r.(@p _).
Unset Printing Projections.
Set Printing All.
-Check r.(@p).
+Check r.(@p _).
Unset Printing All.
(** Explicit version of the primitive projection, applied to its implicit arguments
can be printed using application notation r.(p), r.(@p) in fully explicit form *)
-Check r.(@p) nat.
+Check r.(@p _) nat.
Set Printing Projections.
-Check r.(@p) nat.
+Check r.(@p _) nat.
Unset Printing Projections.
Set Printing All.
-Check r.(@p) nat.
+Check r.(@p _) nat.
Unset Printing All.
Parameter r' : R' nat.
@@ -163,12 +163,12 @@ Unset Printing All.
(** Explicit version of the primitive projection, under applied w.r.t implicit arguments
can be printed only using projection notation. r.(@p) *)
-Check r'.(@p').
+Check r'.(@p' _).
Set Printing Projections.
-Check r'.(@p').
+Check r'.(@p' _).
Unset Printing Projections.
Set Printing All.
-Check r'.(@p').
+Check r'.(@p' _).
Unset Printing All.
(** Explicit version of the primitive projection, applied to its implicit arguments
@@ -181,3 +181,10 @@ Set Printing All.
Check p' r' nat.
Unset Printing All.
+Check (@p' nat).
+Check p'.
+Set Printing All.
+
+Check (@p' nat).
+Check p'.
+Unset Printing All.