fpc/tests/webtbs/tw33414.pp
2018-03-15 21:45:23 +00:00

21 lines
282 B
ObjectPascal

{$mode objfpc}{$H+}
uses Classes, SysUtils;
type
generic TFoo<SomeEnum> = class
m: array[SomeEnum] of integer;
end;
TEnum = (e0, e1);
var
a: specialize TFoo<TEnum>;
begin
if low(a.m)<>e0 then
halt(1);
if high(a.m)<>e1 then
halt(1);
writeln('ok');
end.