mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-26 12:03:45 +02:00
17 lines
174 B
ObjectPascal
17 lines
174 B
ObjectPascal
{ $OPT= -Un }
|
|
{ no unit name checking !! }
|
|
unit bug0176;
|
|
interface
|
|
|
|
var
|
|
l1 : longint;
|
|
|
|
implementation
|
|
|
|
var
|
|
l2 : longint;
|
|
|
|
begin
|
|
bug0176.l1:=1;
|
|
bug0176.l2:=1;
|
|
end. |