swig/Examples/test-suite/cpp0x_constexpr.i
2010-06-26 22:48:49 +00:00

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; }
};
%}