mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 13:49:29 +02:00
12 lines
144 B
ObjectPascal
12 lines
144 B
ObjectPascal
{ %fail }
|
|
{ %opt=-Sew }
|
|
program project1;
|
|
var
|
|
a: byte;
|
|
begin
|
|
a:=1;
|
|
if 1 > 2 then
|
|
a := 0; // <= no warning
|
|
writeln(a);
|
|
end.
|