summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/decltype-33837.C
blob: 2c263dd0a97fc8f2c8ea70e9f15ea63b63c20c9a (plain)
1
2
3
4
5
6
7
// { dg-options -std=c++0x }
// PR c++/33837
void foo()
{
  __decltype (A::foo()); // { dg-error "was not declared|expected" }
  __decltype (B); // { dg-error "was not declared" }
}