Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaTemplate / instantiation-depth-subst-2.cpp
blob2b519e974a9075b06c0ceacac66d8a4c1f478c9c
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}}