mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00

pdecvar.pas, read_record_fields: * if the def of the field is a static array then use the array's element def (the final element def if it is a multi dimensional array) to check for whether this is the current record type + added tests git-svn-id: trunk@23352 -
20 lines
206 B
ObjectPascal
20 lines
206 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tb0590;
|
|
|
|
{$modeswitch advancedrecords}
|
|
|
|
type
|
|
TTest = record
|
|
public type
|
|
TTestSub = record
|
|
f: Integer;
|
|
end;
|
|
public
|
|
f: array[0..0] of TTestSub;
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|