diff options
| author | Pierre-Marie Pédrot | 2016-08-30 19:01:17 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2016-08-30 19:03:05 +0200 |
| commit | 68ee3958437b98291d69709b9c2a730abf7f7f96 (patch) | |
| tree | 1396aa35c7917ebcfe2870ceeb64b10b6ac963ce | |
| parent | 4582ed1c8f0620941a3c296941b1dc808c95d7fe (diff) | |
Fixing output test-suite after warning for inner Requires.
| -rw-r--r-- | test-suite/output/PatternsInBinders.v | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test-suite/output/PatternsInBinders.v b/test-suite/output/PatternsInBinders.v index b5c91e347b..fff86d6fae 100644 --- a/test-suite/output/PatternsInBinders.v +++ b/test-suite/output/PatternsInBinders.v @@ -1,3 +1,5 @@ +Require Coq.Unicode.Utf8. + (** The purpose of this file is to test printing of the destructive patterns used in binders ([fun] and [forall]). *) @@ -37,7 +39,7 @@ End WithParameters. (** Some test involving unicode notations. *) Module WithUnicode. - Require Import Coq.Unicode.Utf8. + Import Coq.Unicode.Utf8. Check λ '((x,y) : A*B), (y,x). Check ∀ '(x,y), swap (x,y) = (y,x). |
