mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:28:06 +02:00
parent
b533474430
commit
aae0d9d4cf
@ -1,11 +1,9 @@
|
||||
program bug;
|
||||
|
||||
{The unfixable bug. Maybe we get an idea when we keep looking at it.
|
||||
|
||||
Daniel Mantione 5 februari 1998.}
|
||||
|
||||
var a:1..4=2; {Crash 1.}
|
||||
b:set of 1..4=[2,3]; {Also crashes, but is the same bug.}
|
||||
const
|
||||
a:1..4=2; {Crash 1.}
|
||||
b:set of 1..4=[2,3]; {Also crashes, but is the same bug.}
|
||||
|
||||
begin
|
||||
end.
|
||||
|
7
bugs/bug0121.pp
Normal file
7
bugs/bug0121.pp
Normal file
@ -0,0 +1,7 @@
|
||||
var
|
||||
c : cardinal;
|
||||
b : byte;
|
||||
begin
|
||||
b:=c;
|
||||
end.
|
||||
|
@ -166,3 +166,4 @@ bug0117.pp internalerror 17 (and why is there an automatic float
|
||||
bug0118.pp Procedural vars cannot be assigned nil ?
|
||||
bug0119.pp problem with methods
|
||||
bug0120.pp inc/dec(enumeration) doesn't work
|
||||
bug0121.pp cardinal -> byte conversion not work (and crashes)
|
||||
|
Loading…
Reference in New Issue
Block a user