mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-12 09:22:45 +02:00
30 lines
434 B
ObjectPascal
30 lines
434 B
ObjectPascal
unit tudots.dot;
|
|
|
|
interface
|
|
|
|
var
|
|
test: char;
|
|
|
|
procedure t;
|
|
|
|
implementation
|
|
|
|
(*
|
|
|
|
uses
|
|
tudots{declaration:tudots}, tudots.dot.next{ todo declaration:tudots.dot.next};
|
|
|
|
// test that type is resolved
|
|
var
|
|
test1: tudots.dot.next.ttest{declaration:tudots.dot.next.ttest};
|
|
|
|
procedure t;
|
|
begin
|
|
// test that we resolve the next identifier to the local variable test
|
|
tudots.dot.test{declaration:tudots.dot.test} := 'c';
|
|
end;
|
|
|
|
*)
|
|
end.
|
|
|