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++11.
|
|
*/
|
|
%module cpp11_constexpr
|
|
|
|
%inline %{
|
|
class TestClass {
|
|
public:
|
|
constexpr int func() { return 10; }
|
|
};
|
|
%}
|
|
|