PR c++/85765 - SFINAE and non-type default template arg.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto21.C
blob346e98c254e633ee7894c7a0cabf902559663f06
1 // Origin PR c++/47208
2 // { dg-do compile { target c++11 } }
4 constexpr auto list = { }; // { dg-error "deducing from brace-enclosed initializer list requires '#include <initializer_list>'" }
5 static const int l = list.size();