diff options
Diffstat (limited to 'tests/headers/variadic-method.hpp')
-rw-r--r-- | tests/headers/variadic-method.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/headers/variadic-method.hpp b/tests/headers/variadic-method.hpp new file mode 100644 index 00000000..78a8eb45 --- /dev/null +++ b/tests/headers/variadic-method.hpp @@ -0,0 +1,6 @@ + +void foo(const char* fmt, ...); + +struct Bar { + void foo(const char* fmt, ...); +}; |