swig/Examples/test-suite/catches_strings.i
2022-09-19 09:09:29 +01:00

13 lines
208 B
OpenEdge ABL

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