PageRenderTime 44ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-26/SWIG/Examples/test-suite/errors/cpp_template_repeat.i

#
Swig | 7 lines | 4 code | 3 blank | 0 comment | 0 complexity | 3278ffaf8bb1675b1120c8e88e288f23 MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. %module xxx
  2. template<class T> T blah(T x) { };
  3. %template(iblah) blah<int>;
  4. %template(iiblah) blah<int>;