aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge/Inputs/struct2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/ASTMerge/Inputs/struct2.c')
-rw-r--r--test/ASTMerge/Inputs/struct2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ASTMerge/Inputs/struct2.c b/test/ASTMerge/Inputs/struct2.c
index d865eef895..655efd43db 100644
--- a/test/ASTMerge/Inputs/struct2.c
+++ b/test/ASTMerge/Inputs/struct2.c
@@ -40,3 +40,9 @@ struct S9 *x9;
// Incomplete type
struct S10 *x10;
+
+// Matches
+struct ListNode {
+ int value;
+ struct ListNode *Next;
+} xList;