summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/auto51.C
blob: dfb08336b53ca3fa4bdec55d6e898dbf4fbf73bd (plain)
1
2
3
4
5
6
7
8
9
// PR c++/84798
// { dg-do compile { target c++11 } }

template<typename T>
struct S {
    static constexpr T value = 0;
};

constexpr auto x = S<void(*)(auto)>::value; // { dg-error "auto" }