etc. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9785 626c5289-ae23-0410-ae9c-e8d60b6d4f22
22 lines
215 B
Ruby
22 lines
215 B
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# Put description here
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
|
|
require 'using_protected'
|
|
|
|
include Using_protected
|
|
|
|
f = FooBar.new
|
|
f.x = 3
|
|
|
|
if f.blah(4) != 4
|
|
raise RuntimeError, "blah(int)"
|
|
end
|
|
|