nested-func-2.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 30 行

C
30
字号
/* PR middle-end/18820 *//* Check that we reject nested functions as initializers   of static variables.  *//* { dg-do compile } *//* APPLE LOCAL testsuite nested functions *//* { dg-options "-fnested-functions" } */struct S {  void (*f)(int);};extern void baz(struct S *);extern void p(int);void foo(void){  int u;  void bar(int val)    {      u = val;    }  static struct S s = { bar }; /* { dg-error "(is not constant)|(near initialization)" } */  baz(&s);  p(u);}

⌨️ 快捷键说明

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