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

template<int> void foo()
{
  enum E {};
  E().E::~T(); // { dg-error "not a class" }
}