2010-04-20 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gnat.dg / slice8_pkg2.ads
bloba6eafc6aa18cfaea096e863e390cf65c7cccadb9
1 generic
3 Line_Length : Natural;
4 Max_Lines : Natural;
6 package Slice8_Pkg2 is
8 Subtype Index is Natural Range 0..Line_length;
9 Subtype Line_Count is Natural Range 0..Max_Lines;
11 Type Line (Size : Index := 0) is
12 Record
13 Data : String (1..Size);
14 End Record;
16 Type Lines is Array (Line_Count Range <>) of Line;
18 Type Paragraph (Size : Line_Count) is
19 Record
20 Data : Lines (1..Size);
21 End Record;
23 end Slice8_Pkg2;