Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/template_ns2.i
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

17 lines
289 B
OpenEdge ABL

// Tests compilation of uninstantiated templates in a namespace
%module template_ns2
%inline %{
namespace foo {
template<class T> class bar {
};
bar<int> *test1(bar<int> *x) { return x; }
typedef int Integer;
bar<Integer *> *test2(bar<Integer *> *x) { return x; }
}
%}