diff options
Diffstat (limited to 'test/ASTMerge/Inputs/enum1.c')
-rw-r--r-- | test/ASTMerge/Inputs/enum1.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ASTMerge/Inputs/enum1.c b/test/ASTMerge/Inputs/enum1.c index cbbed47bac..f2b9c5c98f 100644 --- a/test/ASTMerge/Inputs/enum1.c +++ b/test/ASTMerge/Inputs/enum1.c @@ -32,3 +32,11 @@ enum E5 { E5Enumerator2, E5Enumerator3 } x5; + +// Matching, with typedef +typedef enum { + E6Enumerator1, + E6Enumerator2 +} E6; + +E6 x6; |