mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 22:08:18 +02:00
15 lines
235 B
ObjectPascal
15 lines
235 B
ObjectPascal
// searched from last to first !
|
|
{$NAMESPACES nt2,nt}
|
|
|
|
uses a;
|
|
|
|
var
|
|
which : string;
|
|
begin
|
|
which:=GetIt;
|
|
if (which<>'a1') then
|
|
begin
|
|
Writeln('Wrong namespace used, expected a1, but got: ',which);
|
|
Halt(1);
|
|
end;
|
|
end. |