diff options
Diffstat (limited to 'test/ASTMerge/Inputs/struct2.c')
-rw-r--r-- | test/ASTMerge/Inputs/struct2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ASTMerge/Inputs/struct2.c b/test/ASTMerge/Inputs/struct2.c index 655efd43db..402283137a 100644 --- a/test/ASTMerge/Inputs/struct2.c +++ b/test/ASTMerge/Inputs/struct2.c @@ -46,3 +46,9 @@ struct ListNode { int value; struct ListNode *Next; } xList; + +// Mismatch due to struct used internally +struct DeepError { + int value; + struct DeeperError { int i; float f; } *Deeper; +} xDeep; |