mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-09 20:32:56 +02:00
15 lines
215 B
ObjectPascal
15 lines
215 B
ObjectPascal
{%norun}
|
|
program tudots.prog;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
tudots;
|
|
|
|
begin
|
|
// this should not fail although we have a namespace tudots and a unit tudots
|
|
tudots.dot.test{ todo declaration:tudots.dot.test} := 1;
|
|
end.
|
|
|
|
|