mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 01:59:31 +02: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.
|