22 lines
244 B
Ruby
22 lines
244 B
Ruby
|
|
#!/usr/bin/env ruby
|
||
|
|
#
|
||
|
|
# Put description here
|
||
|
|
#
|
||
|
|
#
|
||
|
|
#
|
||
|
|
#
|
||
|
|
#
|
||
|
|
|
||
|
|
require 'swig_assert'
|
||
|
|
|
||
|
|
require 'refcount'
|
||
|
|
|
||
|
|
|
||
|
|
a = Refcount::A3.new;
|
||
|
|
b1 = Refcount::B.new a;
|
||
|
|
b2 = Refcount::B.new a;
|
||
|
|
|
||
|
|
if a.ref_count() != 3
|
||
|
|
print "This program will crash... now\n"
|
||
|
|
end
|