(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
931018-1.c
       1  unsigned int a[0x1000];
       2  extern const unsigned long v;
       3  
       4  main ()
       5  {
       6    f (v);
       7    f (v);
       8    exit (0);
       9  }
      10  
      11  f (a)
      12       unsigned long a;
      13  {
      14    if (a != 0xdeadbeefL)
      15      abort();
      16  }
      17  
      18  const unsigned long v = 0xdeadbeefL;