aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2019-02-07 16:24:32 +0100
committerPierre-Marie Pédrot2019-02-11 14:26:41 +0100
commita0116bdcb169ebe6e891a7bb3b9e642b9082a0a7 (patch)
tree8ad62ec656bfb70d96ff679637bd400344b4b002 /test-suite
parent30a8190264267e0567f6c52ed263cb4fb6ac9b0c (diff)
Fix #9508: Unexpected interaction between implicit arguments and primitive projections.
This was due to an involuntary capture of a variable name.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_9508.v29
1 files changed, 29 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_9508.v b/test-suite/bugs/closed/bug_9508.v
new file mode 100644
index 0000000000..2c38e24add
--- /dev/null
+++ b/test-suite/bugs/closed/bug_9508.v
@@ -0,0 +1,29 @@
+Set Implicit Arguments.
+Unset Strict Implicit.
+
+Module OK.
+Record A := mkA {
+ T : Type;
+ P : T -> bool;
+}.
+
+About P. (* Argument a is implicit *)
+Check P (true: T (mkA negb)).
+End OK.
+
+Module KO.
+Set Primitive Projections.
+Record A := mkA {
+ T : Type;
+ P : T -> bool;
+}.
+
+About P. (* No implicit arguments *)
+Check P (true: T (mkA negb)).
+(*
+The command has indeed failed with message:
+The term "true : T {| T := bool; P := negb |}" has type "T {| T := bool; P := negb |}"
+while it is expected to have type "A".
+*)
+
+End KO.