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