fpc/tests/webtbs/tw25916a.pp
2014-12-14 17:54:37 +00:00

15 lines
234 B
ObjectPascal

{ %OPT=-Sh}
{$MODE OBJFPC}
{$OPTIMIZATION DFA}
{$HINTS ON}
program test;
procedure TestText(var F: Text);
begin
Writeln(F, 'Test'); // Hint: Local variable "F" does not seem to be initialized
end;
begin
TestText(Output);
end.