lazarus/components/codetools/examples/testscompleteblock/ifbeginelse1_result.inc
mattias 4a05e3f8e0 codetools: completeblock test result
git-svn-id: trunk@21336 -
2009-08-19 21:49:25 +00:00

15 lines
130 B
PHP

{%MainUnit unit1.pas}
procedure Do1;
begin
if True then
begin
Test() //caret position
end
else
begin
end;
end;