fpc/tests/webtbs/tw25600.pp
svenbarth b0670ee34c Fix for Mantis #25600.
ptype.pas, read_named_type.array_dec:
  * generate a valid range definition if we are inside a generic and the array bounds are not ordinals (Note: the check for "parse_generic" should be improved to really detect erratic indexes that are not related to generics in any way)

+ added test

git-svn-id: trunk@27532 -
2014-04-11 14:57:23 +00:00

20 lines
336 B
ObjectPascal

{ %NORUN }
{ %OPT=-g }
program tw25600;
{$MODE DELPHI}
type
// maybe related to
// http://bugs.freepascal.org/view.php?id=25599
// http://bugs.freepascal.org/view.php?id=24848
TC<T> = class
public
class var F: array[0..T.X] of byte; // for normal fields all is ok
end;
begin // Fatal: Internal error 200601281
end.