aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs/closed/bug_10196.v
blob: e2d6be56e936d092b63f377b9340ab5ecba86948 (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
From Ltac2 Require Import Ltac2.

(* true and false are valid constructors even though they are lowercase *)
Ltac2 Eval true.
Ltac2 Eval false.

(* Otherwise constructors have to be Uppercase *)
Ltac2 Type good_constructor := [Uppercased].
Ltac2 Type good_constructors := [Uppercased1 | Uppercased2].

Ltac2 Eval Uppercased2.

Fail Ltac2 Type bad_constructor := [ notUppercased ].
Fail Ltac2 Type bad_constructors := [ | notUppercased1 | notUppercased2 ].

Fail Ltac2 Eval notUppercased2.

(* And the same for open types*)
Ltac2 Type open_type := [ .. ].
Fail Ltac2 Type open_type ::= [ notUppercased ].
Ltac2 Type open_type ::= [ Uppercased ].

Fail Ltac2 Eval notUppercased.
Ltac2 Eval Uppercased.

Fail Ltac2 Type foo ::= [ | bar1 | bar2 ].