1 /* This file is part of a test for SF bug #231619. 2 It shows that the %import directive does not work properly in SWIG 3 1.3a5: Type information is not properly generated if a base class 4 comes from an %import-ed file. */ 5 6 %module imports_a 7 8 %warnfilter(SWIGWARN_RUBY_WRONG_NAME) A::MemberEnum; /* Ruby, wrong constant name */ 9 %warnfilter(SWIGWARN_RUBY_WRONG_NAME) GlobalEnum; /* Ruby, wrong constant name */ 10 11 %{ 12 #include "imports_a.h" 13 %} 14 15 %include "imports_a.h" 16