aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/c-c++-common/Wno-attributes-5.c
blob: 9c0c3da8442e20dd7d980647431d42278dbd9568 (plain)
1
2
3
4
5
6
7
8
/* PR middle-end/103365 */
/* { dg-do compile { target { c || c++11 } } } */

#pragma GCC diagnostic ignored_attributes "foo::_bar"
#pragma GCC diagnostic ignored_attributes "_foo::bar"

[[foo::_bar]] void foo (void);
[[_foo::bar]] void bar (void);