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