mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00
16 lines
194 B
ObjectPascal
16 lines
194 B
ObjectPascal
{%fail}
|
|
{%norun}
|
|
program tudots.dot.prog;
|
|
|
|
{$mode delphi}
|
|
|
|
uses
|
|
tudots;
|
|
|
|
begin
|
|
// this must fail because we have a namespace udots.dot and it has no unit test
|
|
tudots.dot.test := 1;
|
|
end.
|
|
|
|
|