@@ -424,6 +424,7 @@ implementation
{ The library init code is already called and does not
need to be in the initfinal table (PFV) }
block:=statement_block(_INITIALIZATION);
+ init_main_block_syms(block);
end
else if token=_FINALIZATION then
begin
@@ -0,0 +1,5 @@
+uses
+ uw40183;
+
+begin
+end.
@@ -0,0 +1,24 @@
+unit uw40183;
+{$mode ObjFPC}{$H+}
+interface
+ Types;
+type
+ TBuffer = packed record
+ Mask: Int64;
+ DataArray: TObjectDynArray;
+ end;
+var
+ GlobalBuffer: TBuffer;
+implementation
+initialization
+ GlobalBuffer := Default(TBuffer);