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

11 lines
202 B
OpenEdge ABL

/* This testcase checks whether SWIG correctly parses the 'thread_local'
keyword before the member type and name. */
%module cpp0x_thread_local
%inline %{
struct A {
thread_local int val;
};
%}