* throw an error in iso/extended pascal mode if enum types are passed to writeln, resolves #40896

This commit is contained in:
florian 2024-08-24 22:05:51 +02:00
parent 4b4e40dbc9
commit 0735ac0d1f
2 changed files with 16 additions and 0 deletions

View File

@ -850,6 +850,12 @@ implementation
end;
enumdef:
begin
if m_isolike_io in current_settings.modeswitches then
begin
error_para := true;
CGMessagePos(para.fileinfo,type_e_cant_read_write_type);
end;
name:=procprefixes[do_read]+'enum';
if do_read then
{ read is done with a var parameter so we need the correct

10
tests/webtbf/tw40896.pp Normal file
View File

@ -0,0 +1,10 @@
{ %fail }
{$mode extendedpascal}
type
fruits = (apple, banana, citrus);
var
a:fruits;
begin
Writeln(pred(high(a)));
ReadLn;
end.