PR tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git] / gcc / testsuite / gnat.dg / prot3_pkg.ads
blobb4cce90a54378fa5c641cf0e580ae035f7919f80
1 package Prot3_Pkg is
3 type Rec is record
4 V1 : Short_Integer;
5 V2 : Short_Integer;
6 end record with Volatile_Full_Access;
8 protected type Prot is
9 procedure Foo (J : Short_Integer);
10 private
11 Val : Rec;
12 end Prot;
14 P : Prot;
16 end Prot3_Pkg;