Sign in
gnu
/
gcc
/
refs/heads/devel/c++-contracts
/
.
/
gcc
/
testsuite
/
c-c++-common
/
Wunused-var-11.c
blob: a59ef8149386e973bed51198fbe9bef5a8bfe612 [
file
] [
log
] [
blame
]
/* PR c++/44443 */
/* { dg-options "-Wunused" } */
/* { dg-do compile } */
int
i
;
void
f1
()
{
const
int
*
__attribute__
((
unused
))
a
=
&
i
;
const
int
*
b __attribute__
((
unused
))
=
&
i
;
}