mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 17:28:14 +02:00

Needs a fix in gdb when referencing a location relative to a global variable (an array element other than the first, a field other than the first) on Mac OS X and when using external debug info on Linux/Windows. git-svn-id: trunk@12877 -
13 lines
107 B
ObjectPascal
13 lines
107 B
ObjectPascal
{ %fail }
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
|
|
var
|
|
a: ansistring;
|
|
b: char absolute a[5];
|
|
begin
|
|
end.
|
|
|