diff options
Diffstat (limited to 'test/ASTMerge/Inputs/class1.cpp')
-rw-r--r-- | test/ASTMerge/Inputs/class1.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ASTMerge/Inputs/class1.cpp b/test/ASTMerge/Inputs/class1.cpp index e13faf0539..b600cdb1fc 100644 --- a/test/ASTMerge/Inputs/class1.cpp +++ b/test/ASTMerge/Inputs/class1.cpp @@ -6,3 +6,10 @@ struct B : A { float y; float foo(); }; + +struct C { + C(int i = 10); + C(const C&); + C &operator=(C&); + ~C(); +}; |