fpc/tests/tbf/tb0144.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

17 lines
173 B
ObjectPascal

{ %FAIL }
{ OpenString with high should not be allowed }
program tb0144;
procedure TestOpen(var s: OpenString); cdecl;
var
b: byte;
begin
b:=high(s);
end;
Begin
end.