2017-09-09 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / vfa.ads
bloba63be969d55a5e7984cb202c2067233b48877d53
1 -- { dg-do compile }
2 -- { dg-options "-g" }
4 package VFA is
6 type Rec is record
7 A : Short_Integer;
8 B : Short_Integer;
9 end record;
11 type Rec_VFA is new Rec;
12 pragma Volatile_Full_Access (Rec_VFA);
14 end VFA;