2017-09-26 Thomas Koenig <tkoenig@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / warn7.mm
blob6e84069eec520f6fefb86d27c6e48dd7ebf61738
1 // PR c++/50757
2 // { dg-options "-Wformat -Wno-nonnull" }
4 extern void *f (void *__s) __attribute__ ((__nonnull__ (1)));
6 int main()
8   void* const s = 0;
9   f(s);