blob: 8e1b80368d18d18721051ac2ef159c83792ef7e7 [file] [log] [blame]
Douglas Gregorffed1cb2010-04-20 07:18:241// RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 %s
Richard Smith9a568822011-11-21 19:36:322// RUN: %clang -fsyntax-only -Xclang -verify -ftemplate-depth-5 -ftemplate-backtrace-limit=4 %s
3// RUN: %clang -fsyntax-only -Xclang -verify -ftemplate-depth=5 -ftemplate-backtrace-limit=4 %s
Douglas Gregorfcd5db32009-03-10 00:06:194
Douglas Gregorffed1cb2010-04-20 07:18:245template<typename T> struct X : X<T*> { }; \
6// expected-error{{recursive template instantiation exceeded maximum depth of 5}} \
7// expected-note 3 {{instantiation of template class}} \
Douglas Gregor58c65652010-04-21 05:40:438// expected-note {{skipping 2 contexts in backtrace}} \
Richard Smith9a568822011-11-21 19:36:329// expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
Douglas Gregorfcd5db32009-03-10 00:06:1910
11void test() {
Douglas Gregor4ea568f2009-03-10 18:03:3312 (void)sizeof(X<int>); // expected-note {{instantiation of template class}}
Douglas Gregorfcd5db32009-03-10 00:06:1913}