pascalabcnet/TestSamples/FormatterTests/input/test_self_unitname.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

18 lines
189 B
ObjectPascal

unit test_self_unitname;
interface
procedure p;
var x:integer;
implementation
procedure p;
begin
if false then
test_self_unitname.p;
writeln(test_self_unitname.x);
end;
end.