diff options
| author | Vincent Laporte | 2019-01-25 13:01:21 +0000 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2019-09-09 13:45:03 +0200 |
| commit | ee02c17a2e8a10c4f6f6b47e8875f2f9b1a3d42f (patch) | |
| tree | bbdf40527b6fd1eb20c0ec839d9cc8062ba1d37f /test-suite | |
| parent | 110e87a2bee21c112f7fc4291e5a7b7e5180217b (diff) | |
[stdlib] Do not put INR_eq in the “real” hint database
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/output/NoAxiomFromR.out | 1 | ||||
| -rw-r--r-- | test-suite/output/NoAxiomFromR.v | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/output/NoAxiomFromR.out b/test-suite/output/NoAxiomFromR.out new file mode 100644 index 0000000000..7d7c521343 --- /dev/null +++ b/test-suite/output/NoAxiomFromR.out @@ -0,0 +1 @@ +Closed under the global context diff --git a/test-suite/output/NoAxiomFromR.v b/test-suite/output/NoAxiomFromR.v new file mode 100644 index 0000000000..9cf6879699 --- /dev/null +++ b/test-suite/output/NoAxiomFromR.v @@ -0,0 +1,10 @@ +Require Import Psatz. + +Inductive TT : Set := +| C : nat -> TT. + +Lemma lem4 : forall (n m : nat), +S m <= m -> C (S m) <> C n -> False. +Proof. firstorder. Qed. + +Print Assumptions lem4. |
