spec7.c
来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C语言 代码 · 共 20 行
C
20 行
// Test that we allow simple throw specs on pointers.void f() throw () { }void (*pf)() throw () = f;struct A{ void g() throw () { } static void (A::*pmf)() throw ();};void (A::* A::pmf)() = &A::g;int main(){ pf (); A a; (a.*A::pmf)();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?