/* This test case checks whether swig correctly parses and ignores the keywords "static_assert()" inside the class or struct. */ %module cpp0x_static_assert %inline %{ template struct Check1 { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; template class Check2 { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; %}