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