fpc/tests/webtbs/tw3628.pp
2007-01-13 20:27:59 +00:00

18 lines
308 B
ObjectPascal

{%NORUN}
{ Source provided for Free Pascal Bug Report 3628 }
{ Submitted by "rimga" on 2005-02-03 }
{ e-mail: rimga@ktl.mii.lt }
{$ifdef fpc}
{$mode delphi}
{$else}
type
ptrint = longint;
{$endif}
var
s: string='12223445';
begin
s:=string(@s[3]);
WriteLn(ptrint(@s));
WriteLn(ptrint(@s[3]));
end.