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

📄 infinite1.c

📁 linux下的gcc编译器
💻 C
字号:
// Test for catching infinitely recursive instantiations.// Origin: Jason Merrill <jason@redhat.com>// Special g++ Options: -ftemplate-depth-10template <int i> void f(){  f<i+1>();			// ERROR - excessive recursion}// We should never need this specialization because we should issue an// error first about the recursive template instantions.  But, in case// the compiler fails to catch the error, this will keep it from// running forever instantiating more and more templates.template <> void f<11>();int main(){  f<0>();}

⌨️ 快捷键说明

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