fpc/tests/webtbs/uw39543a.pp
Nikolay Nikolov 2c0f10d988 * when adding WebAssembly object info, traverse through current_module.used_units,
as well as the usedunits global. This resolves #39543
2022-02-12 08:32:48 +02:00

19 lines
177 B
ObjectPascal

unit uw39543a;
interface
{$MODE objfpc}
uses
uw39543b;
function Test: TVector4;
implementation
function Test: TVector4;
begin
Result := Vector4(1, 2, 3, 4);
end;
end.