blob: c0b8bb2a124553c8d2795f71014c9b9a9ee5236b [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
Richard Smith9a568822011-11-21 19:36:32 +00002// 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:19 +00004
Richard Smithd3b5c9082012-07-27 04:22:15 +00005#ifndef NOEXCEPT
6
Douglas Gregorffed1cb2010-04-20 07:18:24 +00007template<typename T> struct X : X<T*> { }; \
8// expected-error{{recursive template instantiation exceeded maximum depth of 5}} \
9// expected-note 3 {{instantiation of template class}} \
Douglas Gregor58c65652010-04-21 05:40:43 +000010// expected-note {{skipping 2 contexts in backtrace}} \
Richard Smith9a568822011-11-21 19:36:32 +000011// expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
Douglas Gregorfcd5db32009-03-10 00:06:19 +000012
Richard Smithd3b5c9082012-07-27 04:22:15 +000013void test() {
Douglas Gregor4ea568f2009-03-10 18:03:33 +000014 (void)sizeof(X<int>); // expected-note {{instantiation of template class}}
Douglas Gregorfcd5db32009-03-10 00:06:19 +000015}
Richard Smithd3b5c9082012-07-27 04:22:15 +000016
17#else
18
19// RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 -std=c++11 -DNOEXCEPT %s
20
21template<typename T> struct S {
22 S() noexcept(noexcept(T()));
23};
24struct T : S<T> {}; \
25// expected-error{{recursive template instantiation exceeded maximum depth of 5}} \
26// expected-note 4 {{in instantiation of exception spec}} \
27// expected-note {{skipping 2 contexts in backtrace}} \
28// expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
29T t; // expected-note {{implicit default constructor for 'T' first required here}}
30
31#endif