You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
291 B
7 lines
291 B
// RUN: %clang_cc1 -verify %s -ftemplate-depth 2
|
|
|
|
template<int N> struct S { };
|
|
template<typename T> S<T() + T()> operator+(T, T); // expected-error {{instantiation exceeded maximum depth}} expected-note 2{{while substituting}}
|
|
S<0> s;
|
|
int k = s + s; // expected-note {{while substituting}}
|