import source from 1.3.40
[external/swig.git] / Examples / test-suite / ruby / struct_value_runme.rb
1 #!/usr/bin/env ruby
2 #
3 # Put description here
4 #
5
6
7
8 #
9
10 require 'swig_assert'
11
12 require 'struct_value'
13
14 b = Struct_value::Bar.new
15
16 b.a.x = 3
17 raise RuntimeError if b.a.x != 3
18
19 b.b.x = 3
20 raise RuntimeError if b.b.x != 3
21