summaryrefslogtreecommitdiff
path: root/tests/webtbf/tw10425a.pp
blob: ec2b0ff11450972a84ff68d4c8d645a54eb2124d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ %norun }
{ %fail }

unit tw10425a;

{$mode delphi}

interface

type
  TFloat      = double;
  TPoint2D    = record x,y:TFloat; end;
  TRectangle  = array [1..2] of TPoint2D;

  TPoint2DArray  = array of TPoint2D;
  TPolygon2D     = array of TPoint2D;
  
  function AABB:TPoint2DArray; overload;

implementation

function AABB:TPolygon2D;
begin
end;

end.