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