git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4751 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-04-30 17:44:51 +00:00
commit 6f5e5ddf39
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,12 @@
%module array_typedef_memberin
%inline %{
typedef short arr_short8[8];
namespace ArrayExample
{
class ExampleDetail
{
public:
arr_short8 node_list;
};
};
%}

View file

@ -42,6 +42,7 @@ DYNAMIC_LIB_PATH = $(RUNTIMEDIR):.
# Broken C++ test cases. (Can be run individually using make testcase.cpptest.)
CPP_TEST_BROKEN += \
array_typedef_memberin \
template_default_arg \
template_specialization_defarg \
template_specialization_enum \