fpc/tests/tbs/ub0150.pp
2000-11-30 22:38:14 +00:00

17 lines
249 B
ObjectPascal

{ %OPT=-Un }
{ Old file: tbs0180a.pp }
{ this name should be accepted with -Un option !! }
UNIT Unit_with_strange_name;
INTERFACE
procedure dummy;
IMPLEMENTATION
procedure dummy;
begin
end;
begin
Unit_with_strange_name.dummy;
END.