(root)/
gcc-13.2.0/
gcc/
testsuite/
gnat.dg/
aliasing2.ads
package Aliasing2 is

  type Arr is Array (1..4) of Integer;
  type Ptr is access all Integer;

  A : Arr;

  function F (P : Ptr) return Integer;

end Aliasing2;