Repository URL to install this package:
|
Version:
3.2.0 ▾
|
{ %fail }
// check whether enums can NOT be casted to object references; this
// should NOT work in objfpc mode (see also tbs/tb0554.pp)
{$mode objfpc}
{$packenum 2}
type
TEnum = (a, b, c);
var
e : TEnum;
o : TObject;
begin
e := TEnum(o);
end.