mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-11 15:22:40 +02:00
16 lines
250 B
ObjectPascal
16 lines
250 B
ObjectPascal
{%fail}
|
|
{%norun}
|
|
program tudots.dot.prog;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
tudots{declaration:tudots};
|
|
|
|
begin
|
|
// this must fail because we have a namespace tudots.dot and it has no unit test
|
|
tudots.dot.test{ todo declaration:tudots.dot.test} := 1;
|
|
end.
|
|
|
|
|