Added cpp0x_constexpr.i testcase. Fixed compilation bug of cpp0x_template_double_brackets.i testcase. Removed obsolete cpp0x_template_double_brackets_broken. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-matevz@11322 626c5289-ae23-0410-ae9c-e8d60b6d4f22
8 lines
93 B
OpenEdge ABL
8 lines
93 B
OpenEdge ABL
%module foo
|
|
|
|
%inline %{
|
|
class TestClass {
|
|
constexpr int func() { return 10; }
|
|
};
|
|
%}
|
|
|