pascalabcnet/TestSuite/errors/err0044.pas

9 lines
92 B
ObjectPascal
Raw Permalink Normal View History

2015-05-14 22:35:07 +03:00
type IInt = interface
end;
var a : integer;
b : IInt;
begin
b := a as IInt;
end.