blob: a2b9d2eb1513c02358b51e361540b07dfa518e46 [file] [log] [blame]
Douglas Gregorffed1cb2010-04-20 07:18:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 %s
Douglas Gregorfcd5db32009-03-10 00:06:19 +00002
Douglas Gregorffed1cb2010-04-20 07:18:24 +00003template<typename T> struct X : X<T*> { }; \
4// expected-error{{recursive template instantiation exceeded maximum depth of 5}} \
5// expected-note 3 {{instantiation of template class}} \
Douglas Gregor58c65652010-04-21 05:40:43 +00006// expected-note {{skipping 2 contexts in backtrace}} \
Douglas Gregorffed1cb2010-04-20 07:18:24 +00007// expected-note {{use -ftemplate-depth-N to increase recursive template instantiation depth}}
Douglas Gregorfcd5db32009-03-10 00:06:19 +00008
9void test() {
Douglas Gregor4ea568f2009-03-10 18:03:33 +000010 (void)sizeof(X<int>); // expected-note {{instantiation of template class}}
Douglas Gregorfcd5db32009-03-10 00:06:19 +000011}