const std::string reference throws typemap test added

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6052 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2004-07-23 21:51:42 +00:00
commit 5bd41fa4bf

View file

@ -41,6 +41,12 @@ void test_throw() throw(std::string){
throw x;
}
void test_const_reference_throw() throw(const std::string &){
static std::string x = "x";
throw x;
}
%}