OSDN Git Service

2008-02-14 Douglas Gregor <doug.gregor@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / pr33839.C
1 // { dg-options -std=c++0x }
2 template<int> struct A;
3
4 void foo()
5 {
6   __decltype A<0>; // { dg-error "invalid declarator" }
7   __decltype (A<0>); // { dg-error "must be an expression" }
8 }