/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

  1. %module xxx
  2. template<class T> T blah(T x) { };
  3. %template(iblah) blah<int>;
  4. %template(iiblah) blah<int>;