Funnel changes to the ImportedDecls list in the ASTImporter through a
single Imported function, in preparation for fixing a serious design
flaw.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96044 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/ASTMerge/Inputs/struct1.c b/test/ASTMerge/Inputs/struct1.c
index ff8fa0a..10c8fce 100644
--- a/test/ASTMerge/Inputs/struct1.c
+++ b/test/ASTMerge/Inputs/struct1.c
@@ -44,3 +44,10 @@
// Incomplete type
struct S10 *x10;
+// FIXME: Matches, but crashes the importer
+#if 0
+struct ListNode {
+ int value;
+ struct ListNode *Next;
+} xList;
+#endif