recurse1.c
来自「xml大全 可读写调用率很高 xml大全 可读写调用率很高」· C语言 代码 · 共 17 行
C
17 行
// PR c++/5050// Origin: georg.wild@gmx.de // Reduced by: tbagot@bluearc.com and Nathanael C. Nerode <neroden@twcny.rr.com>// Test for that excessive template recursion does not occur// because of optimization.// { dg-options "-ftemplate-depth-1 -O" } struct ostream { template<class T> ostream& foo( const T & ) { return *this; } }; void foo() { ostream os; (os.foo(1)).foo(2); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?