lazarus/components/codetools/tests/fpctests/tudots.dot.pp
mattias 541f15a9cb codetools: moved tests
git-svn-id: trunk@53152 -
2016-10-17 15:01:23 +00:00

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.