1 // PR c++/84798
2 // { dg-do compile { target c++11 } }
3 
4 template<typename T>
5 struct S {
6     static constexpr T value = 0;
7 };
8 
9 constexpr auto x = S<void(*)(auto)>::value; // { dg-error "auto" }
10