blob: 20a5c2431b649aacf7e081b9f2de8f09b7277fbd [file] [log] [blame]
Douglas Gregor575cf372010-04-20 07:18:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 %s
Douglas Gregor26dce442009-03-10 00:06:19 +00002
Douglas Gregor575cf372010-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}} \
6// expected-note {{suppressed 2 template instantiation contexts}} \
7// expected-note {{use -ftemplate-depth-N to increase recursive template instantiation depth}}
Douglas Gregor26dce442009-03-10 00:06:19 +00008
9void test() {
Douglas Gregoree1828a2009-03-10 18:03:33 +000010 (void)sizeof(X<int>); // expected-note {{instantiation of template class}}
Douglas Gregor26dce442009-03-10 00:06:19 +000011}