call5.c

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

C
20
字号
// { dg-do compile }// Copyright (C) 2007 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 22 Jul 2007 <nathan@codesourcery.com>// PR 32839.  Default arguments propagated through the type system to// an indirect call.void Quux (int i = 0);void Baz (int i);void Foo (){  __typeof (Quux) *q = Baz;  q (); // { dg-error "too few arguments" }}  

⌨️ 快捷键说明

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