(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
init/
pr83993-1.C
// PR c++/83993
// { dg-do compile }

extern const int a[];
const int *const b = &a[0];

int
foo ()
{
  return b[0];
}