Error test-suite updated for nested changes

WARN_DEPRECATED_NESTED_WORKAROUND test added
WARN_PARSE_NAMED_NESTED_CLASS test removed
This commit is contained in:
William S Fulton 2013-12-19 18:23:28 +00:00
commit 82990df573
4 changed files with 23 additions and 18 deletions

View file

@ -0,0 +1,20 @@
%module xxx
template<typename T> struct Temply {
T thing;
};
struct A {
int var;
%template(TemplyInt) Temply<int>;
};
struct B {
int var;
};
%extend B {
%template(TemplyDouble) Temply<double>;
}