mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 02:28:14 +02:00
27 lines
309 B
ObjectPascal
27 lines
309 B
ObjectPascal
unit tudots.dot;
|
|
|
|
interface
|
|
|
|
var
|
|
test: char;
|
|
|
|
procedure t;
|
|
|
|
implementation
|
|
|
|
uses
|
|
tudots, tudots.dot.next;
|
|
|
|
// test that type is resolved
|
|
var
|
|
test1: tudots.dot.next.ttest;
|
|
|
|
procedure t;
|
|
begin
|
|
// test that we resolved the next identifier to the local variable test
|
|
tudots.dot.test := 'c';
|
|
end;
|
|
|
|
end.
|
|
|