diff options
author | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
---|---|---|
committer | Samuel Mimram <samuel.mimram@ens-lyon.org> | 2004-07-28 21:54:47 +0000 |
commit | 6b649aba925b6f7462da07599fe67ebb12a3460e (patch) | |
tree | 43656bcaa51164548f3fa14e5b10de5ef1088574 /test-suite/success/options.v |
Imported Upstream version 8.0pl1upstream/8.0pl1
Diffstat (limited to 'test-suite/success/options.v')
-rw-r--r-- | test-suite/success/options.v | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/test-suite/success/options.v b/test-suite/success/options.v new file mode 100644 index 00000000..9e9af4fa --- /dev/null +++ b/test-suite/success/options.v @@ -0,0 +1,34 @@ +(* Check that the syntax for options works *) +Set Implicit Arguments. +Unset Implicit Arguments. +Test Implicit Arguments. + +Set Printing Coercions. +Unset Printing Coercions. +Test Printing Coercions. + +Set Silent. +Unset Silent. +Test Silent. + +Set Printing Depth 100. +Print Table Printing Depth. + +Parameter i : bool -> nat. +Coercion i : bool >-> nat. +Set Printing Coercion i. +Unset Printing Coercion i. +Test Printing Coercion i. + +Print Table Printing Let. +Print Table Printing If. +Remove Printing Let sig. +Remove Printing If bool. + +Unset Printing Synth. +Set Printing Synth. +Test Printing Synth. + +Unset Printing Wildcard. +Set Printing Wildcard. +Test Printing Wildcard. |