mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-01 14:29:33 +01: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. |