mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-21 13:18:18 +02:00
13 lines
208 B
ObjectPascal
13 lines
208 B
ObjectPascal
{ 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.
|