swig/Examples/test-suite/cpp0x_constexpr.i
Matevz Jekovec d8012716ed Added constexpr keywords and CONSTEXPR terminal to Swig parser.
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
2009-06-26 21:48:48 +00:00

8 lines
93 B
OpenEdge ABL

%module foo
%inline %{
class TestClass {
constexpr int func() { return 10; }
};
%}