blob: 67093eff6d2a2d7959a59637f1628d4fe90c273d [file] [log] [blame]
%module union_scope
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) nRState; // Ruby, wrong class name
%warnfilter(SWIGWARN_RUBY_WRONG_NAME) nRState_rstate; // Ruby, wrong class name
%inline %{
class nRState {
public:
union {
int i;
} rstate;
};
%}