lazarus/components/codetools/tests/laztests/tunit_order_test.pas
mattias e4895d2fd0 codetools: dotted unit name tests
git-svn-id: trunk@54735 -
2017-04-26 08:40:45 +00:00

18 lines
256 B
ObjectPascal

unit tunit_order_test;
{$mode objfpc}{$H+}
interface
uses
unit_order_a, unit_order_b;
implementation
begin
unit_order_b.v{declaration:unit_order_b.v}:=3;
v{declaration:unit_order_b.v}:=3;
unit_order_a.v{declaration:unit_order_a.v}:='3';
end.