mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-20 21:45:31 +02:00
25 lines
290 B
ObjectPascal
25 lines
290 B
ObjectPascal
{%norun}
|
|
program tdotunits3;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
udots.dot.next, udots;
|
|
|
|
type
|
|
TDot = record
|
|
test: string;
|
|
end;
|
|
|
|
TUdots = record
|
|
dot: TDot;
|
|
end;
|
|
|
|
var
|
|
udots: TUdots;
|
|
begin
|
|
// this identifier should be resolved to local udots variable
|
|
udots.dot.test := 'test';
|
|
end.
|
|
|