blob: 4858a2ef6e633f25b0d59726c6e2bbbd3ebc1d86 [file] [log] [blame]
#!/usr/bin/env ruby
#
# Put description here
#
#
#
#
#
require 'swig_assert'
require 'typedef_scope'
b = Typedef_scope::Bar.new
x = b.test1(42, "hello")
if x != 42
puts "Failed!!"
end
x = b.test2(42, "hello")
if x != "hello"
puts "Failed!!"
end