swig/Examples/test-suite/cpp11_constexpr.i
2013-10-07 20:37:00 +01:00

12 lines
208 B
OpenEdge ABL

/* This interface tests whether SWIG supports the new "constexpr" keyword
introduced by C++11.
*/
%module cpp11_constexpr
%inline %{
class TestClass {
public:
constexpr int func() { return 10; }
};
%}