PR other/53317
[official-gcc.git] / gcc / testsuite / gnat.dg / warn6.ads
blobe7495ead101747facb969392634b6b262038c75c
1 package Warn6 is
3 package Q is
4 type T is private; -- this is the trigger
5 private
6 type T is access Integer;
7 pragma No_Strict_Aliasing (T);
9 end Q;
11 subtype Q_T is Q.T;
13 procedure Dummy;
15 end Warn6;