Rename symbol in test case as the name is clashing in some way with new versions of Octave (3.2.4)

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12482 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2011-02-19 16:20:38 +00:00
parent 2c2e5fa9b5
commit 95de0a3437
4 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ typedef int Integer;
return x;
}
::Integer bar() {
::Integer bar_fn() {
return 1;
}

View File

@ -4,5 +4,5 @@ import . "./global_ns_arg"
func main() {
Foo(1)
Bar()
Bar_fn()
}

View File

@ -1,5 +1,5 @@
global_ns_arg
a = foo(1);
b = bar();
b = bar_fn();

View File

@ -1,5 +1,5 @@
from global_ns_arg import *
a = foo(1)
b = bar()
b = bar_fn()