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

18 lines
212 B
ObjectPascal

{ %FAIL }
{ This should fail compilation because open parameters are not
allowed with cdecl'ed routines.
}
procedure TestOpen(var s: array of byte); cdecl;
var
b: byte;
begin
b:=high(s);
end;
Begin
end.