fpc/tests/webtbs/tw26180.pp
svenbarth 34394d6925 Fix for Mantis #26180. Accept undefineddef as first parameter type of an Assert if it is used inside a generic.
ninl.pas, tinlinenode.pass_typecheck:
  * if the first parameter of an Assert is a undefineddef node then accept it as well if the node is part of a generic function/method

+ added test

git-svn-id: trunk@27875 -
2014-06-06 14:39:27 +00:00

24 lines
306 B
ObjectPascal

{ %NORUN }
program tw26180;
{$MODE DELPHI}
{$Assertions on}
type
TA<T> = class
private
F: T;
procedure Foo;
end;
procedure TA<T>.Foo;
begin
Assert(F <> 0); // Error: Boolean expression expected, but got "<undefined type>"
// same for >, <, <=, >=, =
end;
begin
end.