aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorGaëtan Gilbert2020-07-02 15:07:39 +0200
committerGaëtan Gilbert2020-07-02 15:07:39 +0200
commitfd4bc8cefc7ae2724d9c386ecfeda2e2feccd98c (patch)
tree433a0a91feca9915d26deecae560057795f46779 /test-suite
parenta1835c755f07b2199d122632360a5d236cd9984e (diff)
Fix Context with nonmaximplicit.
Fix #12551
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_12551.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12551.v b/test-suite/bugs/closed/bug_12551.v
new file mode 100644
index 0000000000..77ecb367ec
--- /dev/null
+++ b/test-suite/bugs/closed/bug_12551.v
@@ -0,0 +1,8 @@
+
+Section S.
+ Context [A:Type] (a:A).
+ Definition id := a.
+End S.
+
+Check id : forall A, A -> A.
+Check id 0 : nat.