* fixed compiler crash when putting non-constant string in a set expression

(mantis #15288)

git-svn-id: trunk@14367 -
This commit is contained in:
Jonas Maebe 2009-12-08 17:15:31 +00:00
parent a9c025cd6a
commit b9b95a8f73
3 changed files with 30 additions and 1 deletions

1
.gitattributes vendored
View File

@ -9493,6 +9493,7 @@ tests/webtbf/tw14849.pp svneol=native#text/plain
tests/webtbf/tw14929a.pp svneol=native#text/plain
tests/webtbf/tw14929b.pp svneol=native#text/plain
tests/webtbf/tw14946.pp svneol=native#text/plain
tests/webtbf/tw15288.pp svneol=native#text/plain
tests/webtbf/tw1599.pp svneol=native#text/plain
tests/webtbf/tw1599b.pp svneol=native#text/plain
tests/webtbf/tw1633.pp svneol=native#text/plain

View File

@ -515,9 +515,11 @@ implementation
stringdef :
begin
if (p2.nodetype<>stringconstn) then
Message(parser_e_illegal_expression)
{ if we've already set elements which are constants }
{ throw an error }
if ((hdef=nil) and assigned(buildp)) or
else if ((hdef=nil) and assigned(buildp)) or
not(is_char(hdef)) then
CGMessage(type_e_typeconflict_in_set)
else

26
tests/webtbf/tw15288.pp Normal file
View File

@ -0,0 +1,26 @@
{ %fail }
program setcrash;
{$mode objfpc}{$H+}
uses
Classes, SysUtils;
var
AString: String='blabla';
procedure GetKey(var Key: Char);
begin
if Key in ['c', AString] then
writeln('OK');
end;
var
AKey: Char;
begin
AKey := 'c';
GetKey(AKey);
end.