diff options
| author | Vincent Laporte | 2020-04-30 18:01:41 +0200 |
|---|---|---|
| committer | Vincent Laporte | 2020-04-30 18:01:41 +0200 |
| commit | 8287516a003d97852e57e9dc64cde812aec0f10f (patch) | |
| tree | 183b341456eb3877f2e9b50ce0996be962469b27 /test-suite | |
| parent | ebf2619804184065604f801891850e8de3c146be (diff) | |
| parent | 5d514890669296e5d25a342c15aa930595f3af10 (diff) | |
Merge PR #12213: [zify] add support for Nat.le, Nat.lt and Nat.eq
Reviewed-by: vbgl
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/micromega/bug_12210.v | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test-suite/micromega/bug_12210.v b/test-suite/micromega/bug_12210.v new file mode 100644 index 0000000000..ca011def09 --- /dev/null +++ b/test-suite/micromega/bug_12210.v @@ -0,0 +1,19 @@ +Require Import PeanoNat Lia. + +Goal forall x, Nat.le x x. +Proof. +intros. +lia. +Qed. + +Goal forall x, Nat.lt x x -> False. +Proof. +intros. +lia. +Qed. + +Goal forall x, Nat.eq x x. +Proof. +intros. +lia. +Qed. |
