fpc/tests/webtbs/tw37465.pp
Jonas Maebe ac18c0090a * non-zero exit code on failure
git-svn-id: trunk@46661 -
2020-08-23 11:31:16 +00:00

19 lines
208 B
ObjectPascal

program example;
{$mode objfpc}{$H+}
procedure foo(out c: char); inline;
begin
c := #32;
end;
var s: String;
begin
s:=#42;
foo(s[1]);
Writeln(ord(s[1]));
if ord(s[1])<>32 then
halt(1);
end.