fpc/tests/webtbs/tw10966.pp
Jonas Maebe 931aef4daa * make result of not(constant) (with constant type <= sinttype)
equal to sinttype (Delphi-compatible, fixes #10966)
  * changed not(cardinal_constant) into sinttype on 64 bit
    platforms for consistency with other similar rules (and with
    the above change)

git-svn-id: trunk@10455 -
2008-03-07 16:33:15 +00:00

26 lines
454 B
ObjectPascal

{$r+}
const
ctnsNeedJITParsing = 1 shl 1;
type
TCodeTreeNodeSubDesc = word;
var
SubDesc: TCodeTreeNodeSubDesc;
l: longint;
// c: cardinal;
begin
SubDesc := 1;
// fails
// SubDesc := not 2;
l := not(2);
// fails
// c := not(2);
l := not ctnsNeedJITParsing;
// fails
// c := not ctnsNeedJITParsing;
SubDesc := SubDesc and (not 2);
SubDesc := SubDesc and (not (1 shl 1));
SubDesc := SubDesc and (not ctnsNeedJITParsing);
end.