swig/Examples/test-suite/errors/cpp_template_repeat.i
2016-06-01 21:25:25 +01:00

7 lines
207 B
OpenEdge ABL

%module xxx
template<class T> T blah(T x) { };
%template(iblah) blah<int>;
%template(iiblah) blah<int>;
// The second %template instantiation above should surely be ignored with a warning, but doesn't atm