diff options
| author | Pierre-Marie Pédrot | 2016-02-21 00:14:13 +0100 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-02-21 00:14:13 +0100 |
| commit | c5d0aa889fa80404f6c291000938e443d6200e5b (patch) | |
| tree | 253fbb6ebe405b78b5e66a1e1f7d4da606dbfa78 /test-suite/bugs | |
| parent | a4b457bef4290fed3f2869795f1539de53b3805a (diff) | |
| parent | e54d014ce10dea4a74b66e5091d25e4b26bd71fa (diff) | |
Merge branch 'v8.5'
Diffstat (limited to 'test-suite/bugs')
| -rw-r--r-- | test-suite/bugs/closed/4574.v | 8 | ||||
| -rw-r--r-- | test-suite/bugs/closed/4580.v | 6 | ||||
| -rw-r--r-- | test-suite/bugs/closed/4582.v | 10 |
3 files changed, 24 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/4574.v b/test-suite/bugs/closed/4574.v new file mode 100644 index 0000000000..39ba190369 --- /dev/null +++ b/test-suite/bugs/closed/4574.v @@ -0,0 +1,8 @@ +Require Import Setoid. + +Definition block A (a : A) := a. + +Goal forall A (a : A), block Type nat. +Proof. +Fail reflexivity. + diff --git a/test-suite/bugs/closed/4580.v b/test-suite/bugs/closed/4580.v new file mode 100644 index 0000000000..4ffd5f0f4b --- /dev/null +++ b/test-suite/bugs/closed/4580.v @@ -0,0 +1,6 @@ +Require Import Program. + +Class Foo (A : Type) := foo : A. + +Unset Refine Instance Mode. +Program Instance f1 : Foo nat := S _. diff --git a/test-suite/bugs/closed/4582.v b/test-suite/bugs/closed/4582.v new file mode 100644 index 0000000000..0842fb8fa7 --- /dev/null +++ b/test-suite/bugs/closed/4582.v @@ -0,0 +1,10 @@ +Require List. +Import List.ListNotations. + +Variable Foo : nat -> nat. + +Delimit Scope Foo_scope with F. + +Notation " [ x ] " := (Foo x) : Foo_scope. + +Check ([1] : nat)%F. |
