pascalabcnet/TestSuite/errors/err0296.pas
Alexander Algasov 694c75454e fix #1421
2018-10-24 21:18:53 +03:00

12 lines
149 B
ObjectPascal

type
t1 = class end;
t2 = class end;
i1 = interface end;
begin
var a1: t1;
var a2: t2;
var a3: i1;
if a1 is t2(var o) then;
end.