@@ -1,4 +1,5 @@
-{ $VERSION=1.1}
+{ %VERSION=1.1 }
+
const
GUID_NULL : TGUID = '{00000000-0000-0000-0000-000000000000}';
@@ -1,4 +1,4 @@
{$mode objfpc}
var
a : longint absolute 0;
type
i = interface;
c1 = widechar(0);
c2 = widechar(#0);
{$mode delphi}
a = function ( ) : boolean;
@@ -1,3 +1,5 @@
+{ %version=1.1 }
program test_fpu_excpetions;
@@ -1,3 +1,4 @@
{ %RECOMPILE }
unit tunit2;
@@ -6,6 +6,9 @@ type
procedure Test(const Args: array of TPoint);
begin
+ writeln(Args[0].x,',',Args[0].y);
+ if (Args[0].x<>10) and (Args[0].y<>10) then
+ halt(1);
end;