mirror of https://github.com/swig/swig
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:
parent
2c2e5fa9b5
commit
95de0a3437
|
@ -8,7 +8,7 @@ typedef int Integer;
|
|||
return x;
|
||||
}
|
||||
|
||||
::Integer bar() {
|
||||
::Integer bar_fn() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,5 +4,5 @@ import . "./global_ns_arg"
|
|||
|
||||
func main() {
|
||||
Foo(1)
|
||||
Bar()
|
||||
Bar_fn()
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
global_ns_arg
|
||||
|
||||
a = foo(1);
|
||||
b = bar();
|
||||
b = bar_fn();
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from global_ns_arg import *
|
||||
|
||||
a = foo(1)
|
||||
b = bar()
|
||||
b = bar_fn()
|
||||
|
||||
|
|
Loading…
Reference in New Issue