Add catches_strings test to test throws char * typemap

This commit is contained in:
William S Fulton 2022-09-18 19:37:02 +01:00
commit 4a29229bab
21 changed files with 286 additions and 0 deletions

View file

@ -0,0 +1,13 @@
%module catches_strings
%include <std_string.i>
%catches(const char *) StringsThrower::charstring;
%inline %{
struct StringsThrower {
static void charstring() {
throw "charstring message";
}
};
%}