fpc/tests/webtbs/tw13763.pp
Jonas Maebe ee69d00bec - unconditionally enabled {$ifdef PARAOUTFILE}-code (that define was
decomissioned quite a while ago, but this file was forgotten in
    that process)

git-svn-id: trunk@13181 -
2009-05-21 09:57:45 +00:00

14 lines
181 B
ObjectPascal

{ %norun }
{ %opt=-vh -Seh }
{$MODE OBJFPC}
var
f: TextFile;
begin
AssignFile (f, 'test.dat'); // Hint: Variable not initialized
Reset (f);
CloseFile (f);
end.