diff options
Diffstat (limited to 'test/PCH/Inputs/cxx-method.h')
-rw-r--r-- | test/PCH/Inputs/cxx-method.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/PCH/Inputs/cxx-method.h b/test/PCH/Inputs/cxx-method.h index 6adb859..d5d56fe 100644 --- a/test/PCH/Inputs/cxx-method.h +++ b/test/PCH/Inputs/cxx-method.h @@ -1,6 +1,9 @@ struct S { void m(int x); + S(); + S(const S&); + operator const char*(); operator char*(); }; |