diff options
Diffstat (limited to 'clang/test/ASTMerge/Inputs/struct1.c')
-rw-r--r-- | clang/test/ASTMerge/Inputs/struct1.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/clang/test/ASTMerge/Inputs/struct1.c b/clang/test/ASTMerge/Inputs/struct1.c index e6d71ac1b49..af2af8abc42 100644 --- a/clang/test/ASTMerge/Inputs/struct1.c +++ b/clang/test/ASTMerge/Inputs/struct1.c @@ -55,3 +55,9 @@ struct DeepError { int value; struct DeeperError { int i; int f; } *Deeper; } xDeep; + +// Matches +struct { + Int i; + float f; +} x11; |