pascalabcnet/TestSuite/errors/err0044.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

9 lines
92 B
ObjectPascal

type IInt = interface
end;
var a : integer;
b : IInt;
begin
b := a as IInt;
end.