commit | b203c9ee39be3170a7d545db057de8ea62959259 | [log] [tgz] |
---|---|---|
author | Douglas Gregor <dgregor@apple.com> | Thu Feb 11 18:18:11 2010 +0000 |
committer | Douglas Gregor <dgregor@apple.com> | Thu Feb 11 18:18:11 2010 +0000 |
tree | 4a87bf96203528fa8534621cc2a13158ab19b2ce | |
parent | ae24a88655c461e751d0984cc21dda6e17882356 [diff] [blame] |
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/struct2.c b/test/ASTMerge/Inputs/struct2.c new file mode 100644 index 0000000..0a90609 --- /dev/null +++ b/test/ASTMerge/Inputs/struct2.c
@@ -0,0 +1,13 @@ +struct S0 { + int field1; + float field2; +}; + +struct S0 x0; + +struct S1 { + int field1; + float field2; +}; + +struct S1 x1;