swig/Examples/test-suite/not_c_keywords.i
William S Fulton 638ca8152d complex can now be used as an identifier
Remove final vestiges of 'complex' keyword.

Closes #252
2020-10-10 16:07:55 +01:00

13 lines
177 B
OpenEdge ABL

%module not_c_keywords
%extend ComplexStruct {
void init() {
$self->complex = 123;
}
}
%inline %{
struct ComplexStruct {
int complex; /* complex as variable name */
};
%}