summaryrefslogtreecommitdiff
path: root/test-suite/success/options.v
blob: bb678150613b5dec436d8e5fc3d559c36354e52e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(* Check that the syntax for options works *)
Set Implicit Arguments.
Unset Strict Implicit.
Set Strict Implicit.
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.
Test Printing Depth.

Parameter i : bool -> nat.
Coercion i : bool >-> nat.
Add Printing Coercion i.
Remove Printing Coercion i.
Test Printing Coercion i.

Test Printing Let.
Test 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.