OSDN Git Service

PR c++/43856
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / decltype-33837.C
1 // { dg-options -std=c++0x }
2 // PR c++/33837
3 void foo()
4 {
5   __decltype (A::foo()); // { dg-error "was not declared|expected" }
6   __decltype (B); // { dg-error "was not declared" }
7 }