summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/auto39.C
blob: dfa1fb4e9e8354b9da3fac87083aa2304dbdd240 (plain)
1
2
3
4
5
6
// PR c++/58560
// { dg-do compile { target c++11 } }

typedef auto T;     // { dg-error "typedef declared 'auto'" }

void foo() { T(); }