swig/Examples/test-suite/errors/cpp_private_defvalue.i

8 lines
89 B
OpenEdge ABL

%module xxx
class foo {
static const int BAR = 42;
public:
int blah(int x = BAR);
};