mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-20 19:29:36 +01:00
11 lines
94 B
ObjectPascal
11 lines
94 B
ObjectPascal
procedure a(var b: boolean);
|
|
begin
|
|
b:=true;
|
|
end;
|
|
|
|
var C: byte;
|
|
|
|
begin
|
|
a(boolean(c));
|
|
end.
|