⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 recurse1.c

📁 linux下编程用 编译软件
💻 C
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -