diff options
Diffstat (limited to 'tests/headers/enum_and_vtable_mangling.hpp')
-rw-r--r-- | tests/headers/enum_and_vtable_mangling.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/headers/enum_and_vtable_mangling.hpp b/tests/headers/enum_and_vtable_mangling.hpp new file mode 100644 index 00000000..3abd6a29 --- /dev/null +++ b/tests/headers/enum_and_vtable_mangling.hpp @@ -0,0 +1,11 @@ + +enum { + match, + whatever_else, +}; + +class C { + int i; +public: + virtual void match() { }; +}; |