blob: 6fff160dff03aaa6108ee7c26a020ddad6b1a6df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* PR c/114007 */
/* { dg-do compile } */
/* { dg-options "-std=c11" } */
#if __has_c_attribute (gnu::unused)
[[gnu::unused]]
#endif
int i;
#if __has_cpp_attribute (gnu::unused)
[[gnu::unused]]
#endif
int j;
|