mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-17 00:47:19 +02:00
25 lines
290 B
ObjectPascal
25 lines
290 B
ObjectPascal
unit udots.dot;
|
|
|
|
interface
|
|
|
|
var
|
|
test: char;
|
|
|
|
implementation
|
|
|
|
uses
|
|
udots, udots.dot.next;
|
|
|
|
// test that type is resolved
|
|
var
|
|
test1: udots.dot.next.ttest;
|
|
|
|
procedure t;
|
|
begin
|
|
// test that we resolved the next identifier to the local variable test
|
|
udots.dot.test := 'c';
|
|
end;
|
|
|
|
end.
|
|
|