ADT
ast-experimental
Last change
on this file since 7a24d76 was e1d66c84, checked in by Andrew Beach <ajbeach@…>, 3 years ago |
Clean-up from my investigation on the anonymous issue. The parser change improves highlighting.
|
-
Property mode
set to
100644
|
File size:
249 bytes
|
Rev | Line | |
---|
[d4c8b59] | 1 | #pragma once
|
---|
| 2 |
|
---|
| 3 | typedef struct /* anonymous */ {
|
---|
| 4 | int some_int;
|
---|
| 5 | float a_float;
|
---|
| 6 | } name_but_a_typedefed_t;
|
---|
| 7 |
|
---|
| 8 | extern name_but_a_typedefed_t a_typedefed_global;
|
---|
| 9 |
|
---|
[e1d66c84] | 10 | extern struct /* anonymous */ {
|
---|
[d4c8b59] | 11 | int some_int;
|
---|
| 12 | int some_other_int;
|
---|
[e1d66c84] | 13 | } a_global_with_no_type;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.