(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pch/
static-1.c
       1  #include "static-1.h"
       2  static int bar(void)
       3  {
       4    static int counter;
       5    return counter++;
       6  }