📄 nested-func-2.c
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -