diff options
Diffstat (limited to 'Examples/test-suite/errors/cpp_template_repeat.i')
| -rw-r--r-- | Examples/test-suite/errors/cpp_template_repeat.i | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Examples/test-suite/errors/cpp_template_repeat.i b/Examples/test-suite/errors/cpp_template_repeat.i new file mode 100644 index 0000000..e63ffe8 --- /dev/null +++ b/Examples/test-suite/errors/cpp_template_repeat.i @@ -0,0 +1,7 @@ +%module xxx + +template<class T> T blah(T x) { }; + +%template(iblah) blah<int>; +%template(iiblah) blah<int>; + |
