swig/Examples/test-suite/cpp0x_thread_local.i

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