diff options
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/shouldsucceed/2667.v | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/shouldsucceed/2667.v b/test-suite/bugs/closed/shouldsucceed/2667.v new file mode 100644 index 0000000000..d920804d2d --- /dev/null +++ b/test-suite/bugs/closed/shouldsucceed/2667.v @@ -0,0 +1,5 @@ +(* Check that not too many arguments are given to Arguments Scope *) + +Inductive stmt : Type := Sskip: stmt | Scall : nat -> stmt. +Bind Scope Cminor with stmt. +Fail Arguments Scope Scall [_ Cminor ]. (* At most 1 argument expected *) |
