/tags/rel-1-3-29/SWIG/Examples/test-suite/errors/cpp_template_repeat.i
# · Swig · 7 lines · 4 code · 3 blank · 0 comment · 0 complexity · 3278ffaf8bb1675b1120c8e88e288f23 MD5 · raw file
- %module xxx
- template<class T> T blah(T x) { };
- %template(iblah) blah<int>;
- %template(iiblah) blah<int>;