repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
warn
/
format7.C
blob
6e84069eec520f6fefb86d27c6e48dd7ebf61738
1
// PR c++/50757
2
// { dg-options "-Wformat -Wno-nonnull" }
3
4
extern void *f (void *__s) __attribute__ ((__nonnull__ (1)));
5
6
int main()
7
{
8
void* const s = 0;
9
f(s);
10
}