diff options
Diffstat (limited to 'test/ASTMerge/Inputs/struct1.c')
-rw-r--r-- | test/ASTMerge/Inputs/struct1.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ASTMerge/Inputs/struct1.c b/test/ASTMerge/Inputs/struct1.c index ff8fa0a04a..10c8fce42a 100644 --- a/test/ASTMerge/Inputs/struct1.c +++ b/test/ASTMerge/Inputs/struct1.c @@ -44,3 +44,10 @@ struct S9 { int i; float f; } *x9; // Incomplete type struct S10 *x10; +// FIXME: Matches, but crashes the importer +#if 0 +struct ListNode { + int value; + struct ListNode *Next; +} xList; +#endif |