pascalabcnet/TestSuite/boxing4.pas

10 lines
208 B
ObjectPascal
Raw Permalink Normal View History

2020-08-23 13:19:37 +03:00
begin
var e: System.InvalidCastException;
try
var i := real(object(integer(5)));
i := 2;
except on ex: Exception do
e := ex as System.InvalidCastException;
end;
assert(e <> nil);
end.