mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-01 07:49:35 +01:00
*** empty log message ***
This commit is contained in:
parent
3b4c0175e9
commit
b80b4ccb06
5
bugs/bug0126.pp
Normal file
5
bugs/bug0126.pp
Normal file
@ -0,0 +1,5 @@
|
||||
type
|
||||
myarray = packed array[0..10] of longint;
|
||||
|
||||
begin
|
||||
end.
|
||||
17
bugs/bug0127.pp
Normal file
17
bugs/bug0127.pp
Normal file
@ -0,0 +1,17 @@
|
||||
unit test;
|
||||
|
||||
interface
|
||||
|
||||
procedure x;
|
||||
|
||||
implementation
|
||||
|
||||
procedure crash;
|
||||
|
||||
begin
|
||||
x; { called with pascal calling conventions }
|
||||
end;
|
||||
|
||||
procedure x;external;cdecl;
|
||||
|
||||
end.
|
||||
@ -171,3 +171,5 @@ bug0122.pp exit() gives a warning that the result is not set
|
||||
bug0123.pp problem with intel assembler (shrd)
|
||||
bug0124.pp problem with -Rintel switch and indexing (whatever the order)
|
||||
bug0125.pp wrong colors with DOS CRT unit
|
||||
bug0126.pp packed array isn't allowed
|
||||
bug0127.pp problem with cdecl in implementation part
|
||||
|
||||
Loading…
Reference in New Issue
Block a user