diff options
Diffstat (limited to 'clang/test/ASTMerge/Inputs/class2.cpp')
-rw-r--r-- | clang/test/ASTMerge/Inputs/class2.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/clang/test/ASTMerge/Inputs/class2.cpp b/clang/test/ASTMerge/Inputs/class2.cpp new file mode 100644 index 00000000000..91b84dc13b7 --- /dev/null +++ b/clang/test/ASTMerge/Inputs/class2.cpp @@ -0,0 +1,8 @@ +struct A { + int x; +}; + +struct B : A { + int y; + int foo(); +}; |