diff options
| author | Xavier Clerc | 2014-09-26 13:30:19 +0200 |
|---|---|---|
| committer | Xavier Clerc | 2014-09-26 13:30:19 +0200 |
| commit | 9b1b8aba9cd40cc91fd9d52af4e6c075311ba4db (patch) | |
| tree | 200b94e827381cda5102b518291eb1962adb8311 /test-suite/bugs/opened/3463.v | |
| parent | 158398435d1727e59f933f3eff6b58c5a635ffb8 (diff) | |
Add a bunch of reproduction files for bugs.
Diffstat (limited to 'test-suite/bugs/opened/3463.v')
| -rw-r--r-- | test-suite/bugs/opened/3463.v | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test-suite/bugs/opened/3463.v b/test-suite/bugs/opened/3463.v new file mode 100644 index 0000000000..541db37fb7 --- /dev/null +++ b/test-suite/bugs/opened/3463.v @@ -0,0 +1,13 @@ +Tactic Notation "test1" open_constr(t) ident(r):= + pose t. +Tactic Notation "test2" constr(r) open_constr(t):= + pose t. +Tactic Notation "test3" open_constr(t) constr(r):= + pose t. + +Goal True. + test1 (1 + _) nat. + test2 nat (1 + _). + test3 (1 + _) nat. + test3 (1 + _ : nat) nat. + |
