mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +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 -
18 lines
215 B
ObjectPascal
18 lines
215 B
ObjectPascal
{ %FAIL }
|
|
|
|
{$MODE DELPHI}
|
|
|
|
type
|
|
Wrapper<T> = record
|
|
strict private
|
|
type ThisWrapper = Wrapper<T>; { #21539 }
|
|
public
|
|
FWrapper: array [0..0] of ThisWrapper;
|
|
end;
|
|
|
|
var
|
|
wr: Wrapper<Byte>;
|
|
|
|
begin
|
|
end.
|