etc. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9785 626c5289-ae23-0410-ae9c-e8d60b6d4f22
19 lines
269 B
Ruby
19 lines
269 B
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# Put description here
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
|
|
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
|
|
|