Upstream version 1.3.40
[profile/ivi/swig.git] / Examples / test-suite / errors / cpp_template_nargs.i
1 %module xxx
2
3 template<typename T> T blah(T x) { };
4
5 %template(blahi) blah<int,double>;
6 %template(blahf) blah<>;
7
8
9
10