* gcc.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git] / gcc / testsuite / gnat.dg / pointer_array.adb
bloba1c72daae876358cfa0f2d95bc2e6827ca2980bf
1 -- { dg-do compile }
3 procedure pointer_array is
5 type Node;
6 type Node_Ptr is access Node;
7 type Node is array (1..10) of Node_Ptr;
9 procedure Process (N : Node_Ptr) is
10 begin
11 null;
12 end;
14 begin
15 null;
16 end;