*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4462 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Logan Johnson 2003-03-07 17:37:46 +00:00
commit b23b25d118
5 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,12 @@
require 'static_const_member_2'
include Static_const_member_2
c = Test_int.new
a = Test_int::Forward_field # should be available as a class constant
a = Test_int::Current_profile # should be available as a class constant
a = Test_int::RightIndex # should be available as a class constant
a = Test_int::Backward_field # should be available as a class constant
a = Test_int::LeftIndex # should be available as a class constant
a = Test_int.cavity_flags

View file

@ -0,0 +1,2 @@
require 'template_construct'

View file

@ -0,0 +1,8 @@
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"

View file

@ -0,0 +1,8 @@
require 'template_extend2'
a = Template_extend2::LBaz.new
b = Template_extend2::DBaz.new
raise RuntimeError unless a.foo() == "lBaz::foo"
raise RuntimeError unless b.foo() == "dBaz::foo"

View file

@ -0,0 +1,4 @@
require 'typemap_ns_using'
raise RuntimeError unless Typemap_ns_using.spam(37) == 37