mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-09 17:12:59 +02:00
25 lines
354 B
ObjectPascal
25 lines
354 B
ObjectPascal
program bug28877;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Classes
|
|
{ you can add units after this };
|
|
|
|
operator := (AValue : Integer) : TGUID;
|
|
begin
|
|
Result.Data1{declaration:system.TGUID.Data1};
|
|
end;
|
|
|
|
function Test : TGUID;
|
|
begin
|
|
Result.Data1{declaration:system.TGUID.Data1};
|
|
end;
|
|
|
|
begin
|
|
end.
|
|
|