git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
34 lines
478 B
OpenEdge ABL
34 lines
478 B
OpenEdge ABL
%module template_default_arg
|
|
|
|
%warnfilter(801) hi; /* Ruby, wrong class name */
|
|
|
|
%inline %{
|
|
template <class T>
|
|
struct Hello
|
|
{
|
|
typedef unsigned int size_type;
|
|
|
|
// This works
|
|
// Hello(size_type n = Hello<T>::size_type(0) ) { }
|
|
|
|
// This doesn't
|
|
Hello(size_type n = size_type(0) ) { }
|
|
|
|
};
|
|
%}
|
|
|
|
%template(Hello_int) Hello<int>;
|
|
|
|
%inline %{
|
|
|
|
struct hi : Hello<int>
|
|
{
|
|
hi(size_type n) : Hello<int>(n)
|
|
{
|
|
}
|
|
|
|
};
|
|
%}
|
|
|
|
|
|
|