mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-17 08:46:36 +02:00
15 lines
175 B
ObjectPascal
15 lines
175 B
ObjectPascal
{%norun}
|
|
program udots.prog;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
udots;
|
|
|
|
begin
|
|
// this should not fail although we have a namespace udots and a unit udots
|
|
udots.dot.test := 1;
|
|
end.
|
|
|
|
|