mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 15:59:30 +02:00
+ 273
This commit is contained in:
parent
fa0138d67d
commit
d26e89ef80
13
bugs/bug0273.pp
Normal file
13
bugs/bug0273.pp
Normal file
@ -0,0 +1,13 @@
|
||||
Program CharArr;
|
||||
|
||||
Var CharArray : Array[1..4] Of Char;
|
||||
|
||||
S : String;
|
||||
|
||||
Begin
|
||||
CharArray:='BUG?';
|
||||
S:=CharArray;
|
||||
WriteLn(S); { * This is O.K. * }
|
||||
WriteLn(CharArray); { * GENERAL PROTECTION FAULT. * }
|
||||
End.
|
||||
|
@ -313,7 +313,7 @@ Fixed bugs:
|
||||
bug0257.pp problem with procvars in tp mode OK 0.99.11 (PM)
|
||||
bug0258.pp bug in small const set extension to large sets OK 0.99.12 (PM)
|
||||
bug0259.pp problem with optimizer for real math (use -O1) OK 0.99.12 (PM)
|
||||
bug0260.pp problem with VMT generation if non virtual
|
||||
bug0260.pp problem with VMT generation if non virtual
|
||||
method has a virtual overload OK 0.99.12 (PM)
|
||||
bug0261.pp problems for assignment overloading OK 0.99.12a (PM)
|
||||
bug0269.pp wrong linenumber for repeat until when type mismatch OK 0.99.12b (PM)
|
||||
@ -361,4 +361,4 @@ bug0268.pp crash with exceptions
|
||||
bug0270.pp unexpected eof in tp mode with (* and directives
|
||||
bug0271.pp abstract methods can't be assigned to methodpointers
|
||||
bug0272.pp No error issued if wrong parameter in function inside a second function
|
||||
|
||||
bug0273.pp small array pushing to array of char procedure is wrong
|
||||
|
Loading…
Reference in New Issue
Block a user