git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-matevz@12154 626c5289-ae23-0410-ae9c-e8d60b6d4f22
12 lines
208 B
OpenEdge ABL
12 lines
208 B
OpenEdge ABL
/* This interface tests whether SWIG supports the new "constexpr" keyword
|
|
introduced by C++0x.
|
|
*/
|
|
%module cpp0x_constexpr
|
|
|
|
%inline %{
|
|
class TestClass {
|
|
public:
|
|
constexpr int func() { return 10; }
|
|
};
|
|
%}
|
|
|