mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 00:28:23 +02:00
* fixed web bug #4647 (untyped elements in array constructors) + test
git-svn-id: trunk@2110 -
This commit is contained in:
parent
cbb59be2f1
commit
6d3ae16267
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -5941,6 +5941,7 @@ tests/webtbf/tw4569a.pp svneol=native#text/plain
|
||||
tests/webtbf/tw4569b.pp svneol=native#text/plain
|
||||
tests/webtbf/tw4619a.pp -text svneol=unset#text/plain
|
||||
tests/webtbf/tw4619b.pp svneol=native#text/plain
|
||||
tests/webtbf/tw4647.pp svneol=native#text/plain
|
||||
tests/webtbf/tw4651.pp svneol=native#text/plain
|
||||
tests/webtbf/uw0744.pp svneol=native#text/plain
|
||||
tests/webtbf/uw0840a.pp svneol=native#text/plain
|
||||
|
@ -970,7 +970,9 @@ implementation
|
||||
begin
|
||||
if is_integer(hp.left.resulttype.def) and
|
||||
not(is_64bitint(hp.left.resulttype.def)) then
|
||||
hp.left:=ctypeconvnode.create(hp.left,s32inttype);
|
||||
hp.left:=ctypeconvnode.create(hp.left,s32inttype)
|
||||
else if is_void(hp.left.resulttype.def) then
|
||||
CGMessagePos1(hp.left.fileinfo,type_e_wrong_type_in_array_constructor,hp.left.resulttype.def.typename);
|
||||
end;
|
||||
floatdef :
|
||||
if not(is_currency(hp.left.resulttype.def)) then
|
||||
|
16
tests/webtbf/tw4647.pp
Normal file
16
tests/webtbf/tw4647.pp
Normal file
@ -0,0 +1,16 @@
|
||||
{ %fail }
|
||||
|
||||
{$mode delphi}
|
||||
program test;
|
||||
|
||||
uses
|
||||
SysUtils;
|
||||
|
||||
procedure shiny;
|
||||
begin
|
||||
end;
|
||||
|
||||
begin
|
||||
Format('%s', [shiny()]);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user