view gcc/testsuite/g++.dg/warn/nonnull1.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

// Test that "nonnull" attribute works for C++.
// Origin: Joseph Myers <jsm@polyomino.org.uk>
// { dg-do compile }
// { dg-options "-Wall" }

// The "nonnull" attribute is thoroughly tested for C, so here we
// simply test that it works at all, as at one point the relevant
// checking code was only called for C.

extern void f (char *) __attribute__((nonnull));

void
g ()
{
  f (0); // { dg-warning "null" "null argument" }
}