(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.jason/
binding.C
// { dg-do assemble  }
// Bug: g++ only looks in the current temporary binding level for a name.

struct T { ~T(); };

int main()
{
  foo:
   T t;				// { dg-message "" } redeclared
  bar:
   T t;				// { dg-error "" } redeclaration
}