git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4248 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-01-31 17:29:28 +00:00
commit 09fcd7111b
2 changed files with 10 additions and 0 deletions

View file

@ -89,6 +89,7 @@ CPP_TEST_CASES += \
default_ns \
default_ref \
dynamic_cast \
enum_plus \
enum_scope \
enum_scope_template \
enum_var \

View file

@ -0,0 +1,9 @@
%module enum_plus
%inline %{
struct iFoo
{
enum {
Phoo = +50
};
};
%}