blob: 6e84069eec520f6fefb86d27c6e48dd7ebf61738 [file] [log] [blame]
// PR c++/50757
// { dg-options "-Wformat -Wno-nonnull" }
extern void *f (void *__s) __attribute__ ((__nonnull__ (1)));
int main()
{
void* const s = 0;
f(s);
}