[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaTemplate / instantiation-depth-subst-2.cpp
blobc9df093b1f7af385c82d04cdfd94ca05dfe37e3f
1 // RUN: %clang_cc1 -verify %s -ftemplate-depth 2
3 template<int N> struct S { };
4 template<typename T> S<T() + T()> operator+(T, T); // expected-error {{instantiation exceeded maximum depth}} expected-note 2{{while substituting}}
5 S<0> s;
6 int k = s + s; // expected-note {{while substituting}}