fpc/tests/webtbs/tw8229.pp
florian c6d3bc813f * fixes #8229
git-svn-id: trunk@6238 -
2007-01-28 08:21:08 +00:00

18 lines
170 B
ObjectPascal

program WideStringFault;
procedure Test;
var
w: widestring;
v: variant;
begin
w := '';
v := w;
w := v;
if w <> '' then
halt(1);
end;
begin
Test;
end.