nested class method test

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9532 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-11-08 00:59:17 +00:00
commit 1da87e125d

View file

@ -221,6 +221,7 @@ namespace a
class Ola {
public:
Ola() {}
void eek() {}
};
template <class T>
@ -234,6 +235,7 @@ namespace a
class Ala::Ola {
public:
Ola() {}
void eek() {}
};
%template(hi) Ala::hi<int>;