mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
18 lines
212 B
ObjectPascal
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.
|