/trunk/Examples/test-suite/errors/cpp_private_defvalue.i
Swig | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | 1d919f997ef4e6855aa346f185fdd97b MD5 | raw file
1%module xxx 2 3class foo { 4static const int BAR = 42; 5public: 6 int blah(int x = BAR); 7};