blob: 02c6316e16a66e1cf38ef6069bf581ef23e93f33 [file] [log] [blame]
// PR c++/50075
// { dg-do compile { target c++11 } }
// { dg-options "-ftemplate-depth=10" }
template <typename T>
auto make_array(const T& il) ->
decltype(make_array(il)) // { dg-error "not declared|no matching|exceeds" }
{ }
int main()
{
int z = make_array(1); // { dg-error "no matching" }
}