Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f67789c

Browse files
committedJun 24, 2023
chore: add some tests
1 parent b191f46 commit f67789c

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed
 

‎test/corpus/declarations.txt

+29-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ struct s2 {
99
float y : 5;
1010
};
1111

12+
struct s3 {
13+
int x : 1, y : 2;
14+
};
15+
1216
---
1317

1418
(translation_unit
@@ -23,7 +27,19 @@ struct s2 {
2327
(field_declaration
2428
type: (primitive_type)
2529
declarator: (field_identifier)
26-
(bitfield_clause (number_literal))))))
30+
(bitfield_clause
31+
(number_literal)))))
32+
(struct_specifier
33+
name: (type_identifier)
34+
body: (field_declaration_list
35+
(field_declaration
36+
type: (primitive_type)
37+
declarator: (field_identifier)
38+
(bitfield_clause
39+
(number_literal))
40+
declarator: (field_identifier)
41+
(bitfield_clause
42+
(number_literal))))))
2743

2844
============================================
2945
Union declarations
@@ -67,6 +83,10 @@ enum e3 {
6783
val1,
6884
};
6985

86+
enum e4: int {
87+
val1,
88+
};
89+
7090
---
7191

7292
(translation_unit
@@ -81,7 +101,14 @@ enum e3 {
81101
(enum_specifier
82102
name: (type_identifier)
83103
body: (enumerator_list
84-
(enumerator name: (identifier)))))
104+
(enumerator
105+
name: (identifier))))
106+
(enum_specifier
107+
name: (type_identifier)
108+
underlying_type: (primitive_type)
109+
body: (enumerator_list
110+
(enumerator
111+
name: (identifier)))))
85112

86113
======================================================
87114
Struct declarations containing preprocessor directives

0 commit comments

Comments
 (0)
Please sign in to comment.