|
@@ -1,11 +1,17 @@
|
|
|
{ Source provided for Free Pascal Bug Report 3628 }
|
|
|
{ Submitted by "rimga" on 2005-02-03 }
|
|
|
{ e-mail: [email protected] }
|
|
|
+{$ifdef fpc}
|
|
|
{$mode delphi}
|
|
|
+{$else}
|
|
|
+type
|
|
|
+ ptrint = longint;
|
|
|
+{$endif}
|
|
|
var
|
|
|
s: string='12223445';
|
|
|
begin
|
|
|
- s:=string(@s[3]); //internal error 200410231
|
|
|
- WriteLn(ptrint(@s[3])); //runtime error 203
|
|
|
+ s:=string(@s[3]);
|
|
|
+ WriteLn(ptrint(@s));
|
|
|
+ WriteLn(ptrint(@s[3]));
|
|
|
end.
|
|
|
|