git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2009-matevz@12154 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
267 B
OpenEdge ABL
15 lines
267 B
OpenEdge ABL
/* This testcase checks whether SWIG correctly uses the new initializer_list
|
|
introduced in C++0x. */
|
|
%module cpp0x_initializer_list
|
|
%warnfilter(520) A;
|
|
|
|
%inline %{
|
|
#include <initializer_list>
|
|
|
|
class A {
|
|
public:
|
|
A( std::initializer_list<int> ) {}
|
|
A() {}
|
|
};
|
|
%}
|
|
|