summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/uw0701d.pp
blob: a193d2268faf683b3e68035be34689e0cc9b007f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
unit uw0701d;

  interface

  implementation

uses erroru;

var
   startmem : sizeint;

initialization
   startmem:=0;
   DoMem(startmem);
finalization
   if DoMem(startmem)<>0 then
     begin
       writeln('Problem with ansistrings in units');
       halt(1);
     end;
end.