(root)/
gcc-13.2.0/
gcc/
testsuite/
c-c++-common/
Wno-attributes-5.c
       1  /* PR middle-end/103365 */
       2  /* { dg-do compile { target { c || c++11 } } } */
       3  
       4  #pragma GCC diagnostic ignored_attributes "foo::_bar"
       5  #pragma GCC diagnostic ignored_attributes "_foo::bar"
       6  
       7  [[foo::_bar]] void foo (void);
       8  [[_foo::bar]] void bar (void);