blob: 1993c068b47045a0c4ad81f04889a0ed7aa6d909 [file] [log] [blame]
/* PR c++/37555 */
/* { dg-do compile } */
struct A {};
typedef void (A::T)(); /* { dg-error "15:typedef name may not be a nested-name-specifier" } */
void foo()
{
T t;
t; /* { dg-error "was not declared" } */
}