aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr51786.C
blob: 69b7441588feedbb7d54e031be7c11b7161582c9 (plain)
1
2
3
4
5
6
7
8
// PR c++/51786
// { dg-do compile { target c++11 } }

enum E {};
struct A {};

void foo() { decltype(E{}); }  // { dg-error "does not declare anything" }
void bar() { decltype(A{}); }  // { dg-error "does not declare anything" }