mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
14 lines
220 B
ObjectPascal
14 lines
220 B
ObjectPascal
{ %fail }
|
|
|
|
// check whether integers can NOT be casted to object references; this
|
|
// should NOT work in objfpc mode (see also tbs/tb0554.pp)
|
|
{$mode objfpc}
|
|
|
|
var
|
|
i : Word;
|
|
o : TObject;
|
|
|
|
begin
|
|
o := TObject(i);
|
|
end.
|