diff options
| author | Gaëtan Gilbert | 2020-07-02 15:07:39 +0200 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-07-02 15:07:39 +0200 |
| commit | fd4bc8cefc7ae2724d9c386ecfeda2e2feccd98c (patch) | |
| tree | 433a0a91feca9915d26deecae560057795f46779 /test-suite | |
| parent | a1835c755f07b2199d122632360a5d236cd9984e (diff) | |
Fix Context with nonmaximplicit.
Fix #12551
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12551.v | 8 |
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. |
