blob: 999b181ba8da0b70b8a3de12515bf37541278692 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env ruby
#
# Put description here
#
#
#
#
#
require 'swig_assert'
require 'template_extend1'
a = Template_extend1::LBaz.new
b = Template_extend1::DBaz.new
raise RuntimeError unless a.foo() == "lBaz::foo"
raise RuntimeError unless b.foo() == "dBaz::foo"
|