Add missing test cases for AST merging of structures.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95886 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/ASTMerge/Inputs/struct1.c b/test/ASTMerge/Inputs/struct1.c
new file mode 100644
index 0000000..381f00a
--- /dev/null
+++ b/test/ASTMerge/Inputs/struct1.c
@@ -0,0 +1,16 @@
+typedef int Int;
+typedef float Float;
+
+struct S0 {
+ Int field1;
+ Float field2;
+};
+
+struct S0 x0;
+
+struct S1 {
+ Int field1;
+ int field2;
+};
+
+struct S1 x1;