summaryrefslogtreecommitdiff
path: root/test.adb
blob: f757eb439ba77d4f8241cd21a9de8935f0da61d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
with Text_IO; use Text_IO;
with Ada.Strings.Fixed; use Ada.Strings.Fixed;
with Ada.Strings; use Ada.Strings;

procedure Test is
    type IVector2 is record
        X, Y: Integer;
    end record;
    type Ten_Numbers is array(IVector2) of Integer;

    Position: IVector2;
    Xs: Ten_Numbers;
begin
    null;
end;