etc. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9785 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
240 B
Ruby
18 lines
240 B
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# Put description here
|
|
#
|
|
#
|
|
#
|
|
#
|
|
#
|
|
|
|
require 'swig_assert'
|
|
|
|
require 'virtual_derivation'
|
|
|
|
b = Virtual_derivation::B.new 3
|
|
|
|
if b.get_a() != b.get_b()
|
|
print "something is still wrong ", b.get_a(), b.get_b(), "\n"
|
|
end
|