analyzer: enable taint state machine by default [PR103533]
[official-gcc.git] / gcc / testsuite / c-c++-common / Wno-attributes-5.c
blob9c0c3da8442e20dd7d980647431d42278dbd9568
1 /* PR middle-end/103365 */
2 /* { dg-do compile { target { c || c++11 } } } */
4 #pragma GCC diagnostic ignored_attributes "foo::_bar"
5 #pragma GCC diagnostic ignored_attributes "_foo::bar"
7 [[foo::_bar]] void foo (void);
8 [[_foo::bar]] void bar (void);