They will give you and idea of what is currently working. If you have another case you think we need to test, please send me an email to add it and trying it here. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5581 626c5289-ae23-0410-ae9c-e8d60b6d4f22
8 lines
187 B
Ruby
8 lines
187 B
Ruby
require 'friends'
|
|
|
|
|
|
a = Friends::A.new(2)
|
|
|
|
raise RuntimeError if Friends::get_val1(a) != 2
|
|
raise RuntimeError if Friends::get_val2(a) != 4
|
|
raise RuntimeError if Friends::get_val3(a) != 6
|
|
|