(root)/
gcc-13.2.0/
gcc/
testsuite/
obj-c++.dg/
warn7.mm
// PR c++/50757
// { dg-options "-Wformat -Wno-nonnull" }

extern void *f (void *__s) __attribute__ ((__nonnull__ (1)));

int main()
{
  void* const s = 0;
  f(s);
}