xref: /llvm-project/clang-tools-extra/test/modularize/Inputs/Anonymous.h (revision 8e01c069c9634321ec3750c5ad081119b94fd5ec)
1*8e01c069SJohn Thompson // Exercise some anonymous type issues.
2*8e01c069SJohn Thompson 
3*8e01c069SJohn Thompson // Anonymous enum.
4*8e01c069SJohn Thompson enum {
5*8e01c069SJohn Thompson   Tag1
6*8e01c069SJohn Thompson };
7*8e01c069SJohn Thompson 
8*8e01c069SJohn Thompson // Anonymous enum typedef.
9*8e01c069SJohn Thompson typedef enum {
10*8e01c069SJohn Thompson   Tag2
11*8e01c069SJohn Thompson } AnonymousEnum;
12