instantiation-depth.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031
  1. // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 %s
  2. // 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
  4. #ifndef NOEXCEPT
  5. template<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}} \
  8. // expected-note {{skipping 2 contexts in backtrace}} \
  9. // expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
  10. void test() {
  11. (void)sizeof(X<int>); // expected-note {{instantiation of template class}}
  12. }
  13. #else
  14. // RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 5 -ftemplate-backtrace-limit 4 -std=c++11 -DNOEXCEPT %s
  15. template<typename T> struct S {
  16. S() noexcept(noexcept(T()));
  17. };
  18. struct T : S<T> {}; \
  19. // expected-error{{recursive template instantiation exceeded maximum depth of 5}} \
  20. // expected-note 4 {{in instantiation of exception spec}} \
  21. // expected-note {{skipping 2 contexts in backtrace}} \
  22. // expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
  23. T t; // expected-note {{implicit default constructor for 'T' first required here}}
  24. #endif