* new bug

This commit is contained in:
peter 2003-12-12 15:43:41 +00:00
parent 6091cd2824
commit 8b4a122d49

17
tests/webtbs/tw2841.pp Normal file
View File

@ -0,0 +1,17 @@
{ %opt=-Sew }
{ Source provided for Free Pascal Bug Report 2841 }
{ Submitted by "Mattias Gaertner" on 2003-12-09 }
{ e-mail: mattias@freepascal.org }
program ShortStringNotInitialized;
{$mode objfpc}{$H+}
procedure DoSomething;
var s: shortstring;
begin
s[1]:=chr(3);
end;
begin
end.