git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4254 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-02-06 15:58:32 +00:00
commit 2820b0ce61
2 changed files with 12 additions and 0 deletions

View file

@ -43,6 +43,7 @@ DYNAMIC_LIB_PATH = $(RUNTIMEDIR):.
# C++ test cases. (Can be run individually using make testcase.cpptest.)
CPP_TEST_BROKEN = \
global_ns_arg \
arrayref \
abstract_typedef \
namespace_nested \

View file

@ -0,0 +1,11 @@
%module global_ns_arg
%inline %{
typedef int Integer;
::Integer foo(::Integer x) {
return x;
}
%}