infinite1.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 22 行
C
22 行
// { dg-do assemble }// { dg-options "-ftemplate-depth-10" }// Test for catching infinitely recursive instantiations.// Origin: Jason Merrill <jason@redhat.com>template <int i> void f(){ f<i+1>(); // { dg-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 + =
减小字号Ctrl + -
显示快捷键?