blob: 038c8b848712e4773b8dedd638f8b5557c1d955c [file] [log] [blame]
// PR c++/17393
// { dg-options "-Wall" }
struct A { };
void foo()
{
// Check that we do not complain about an unused
// compiler-generated variable.
A& = a; // { dg-error "token|declarator|undeclared" }
}