git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6404 626c5289-ae23-0410-ae9c-e8d60b6d4f22
8 lines
181 B
Ruby
Executable file
8 lines
181 B
Ruby
Executable file
require 'overload_extend'
|
|
|
|
f = Overload_extend::Foo.new
|
|
|
|
raise RuntimeError if f.test(3) != 1
|
|
raise RuntimeError if f.test("hello") != 2
|
|
raise RuntimeError if f.test(3.5,2.5) != 6
|
|
|
|
|