swig/Examples/test-suite/ruby_naming_bugs.i
Olly Betts 2e98189564 [Ruby] Fix remove of prefix from method name
The prefix is now only removed at the start.

Fixes https://sourceforge.net/p/swig/bugs/1136/
2022-02-02 15:53:23 +13:00

9 lines
222 B
OpenEdge ABL

%module ruby_naming_bugs
%inline %{
// Prior to SWIG 4.1.0 the "Cool_" here was overzealously removed while
// trying to remove a class name prefix.
struct Cool {
int somethingCool_Fast() { return 42; }
};
%}