nonnull1.c

来自「用于进行gcc测试」· C语言 代码 · 共 17 行

C
17
字号
// 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));voidg (){  f (0); // { dg-warning "null" "null argument" }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?