PageRenderTime 64ms CodeModel.GetById 1ms RepoModel.GetById 3ms app.codeStats 0ms

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

#
Swig | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | 1d919f997ef4e6855aa346f185fdd97b MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module xxx
  2. class foo {
  3. static const int BAR = 42;
  4. public:
  5. int blah(int x = BAR);
  6. };