mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:28:05 +02:00
25 lines
296 B
ObjectPascal
25 lines
296 B
ObjectPascal
{%norun}
|
|
program tdotunits3;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
tudots.dot.next, tudots;
|
|
|
|
type
|
|
TDot = record
|
|
test: string;
|
|
end;
|
|
|
|
TUdots1 = record
|
|
dot: TDot;
|
|
end;
|
|
|
|
var
|
|
tudots: TUdots1;
|
|
begin
|
|
// this identifier should be resolved to local udots variable
|
|
tudots.dot.test := 'test';
|
|
end.
|
|
|