mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 08:09:33 +02:00
15 lines
222 B
ObjectPascal
15 lines
222 B
ObjectPascal
{%fail}
|
|
{%norun}
|
|
program tdotunits1;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
tudots.dot.next, tudots;
|
|
|
|
begin
|
|
// this identifier can't be resolved because namespace udots.dot hides the udots unit visibility
|
|
tudots.dot.test := 1;
|
|
end.
|
|
|