mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
17 lines
181 B
ObjectPascal
17 lines
181 B
ObjectPascal
{ %norun }
|
|
unit uw18909b;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
uses uw18909a;
|
|
|
|
operator :=(const A: TA): TB;
|
|
|
|
implementation
|
|
|
|
operator :=(const A: TA): TB; begin Result.x := A.x; end;
|
|
|
|
end.
|