diff options
| author | Gaëtan Gilbert | 2020-02-12 12:56:22 +0100 |
|---|---|---|
| committer | Gaëtan Gilbert | 2020-02-12 12:56:22 +0100 |
| commit | 0709808440c67832d170c32ff9ee6ac993061144 (patch) | |
| tree | 728a4336c9a2d94e645f27c438e2908fcc5bc289 /test-suite/failure | |
| parent | 2a4d9569570584c300fcb19c3804fe07578eef12 (diff) | |
| parent | b6264bb2df9b73b905af126ede49cd31abf0e7da (diff) | |
Merge PR #11546: Remove the Template Check option.
Reviewed-by: SkySkimmer
Ack-by: Zimmi48
Diffstat (limited to 'test-suite/failure')
| -rw-r--r-- | test-suite/failure/Template.v | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test-suite/failure/Template.v b/test-suite/failure/Template.v deleted file mode 100644 index fbd9c8bcba..0000000000 --- a/test-suite/failure/Template.v +++ /dev/null @@ -1,28 +0,0 @@ - -Module TestUnsetTemplateCheck. - Unset Template Check. - - Section Foo. - - Context (A : Type). - - Definition cstr := nat : ltac:(let ty := type of A in exact ty). - - Inductive myind := - | cons : A -> myind. - End Foo. - - (* Can only succeed if no template check is performed *) - Check myind True : Prop. - - About myind. - - (* test discharge puts things in the right order (by using the - checker on the result) *) - Section S. - - Variables (A:Type) (a:A). - Inductive bb (B:Type) := BB : forall a', a = a' -> B -> bb B. - End S. - -End TestUnsetTemplateCheck. |
