(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
lookup/
anon3.C
// Test that anonymous unions work with explicit scope.

static union
{
  int i;
};

int main()
{
  return ::i;
}