pascalabcnet/TestSuite/where11.pas

14 lines
156 B
ObjectPascal
Raw Permalink Normal View History

2020-03-15 19:57:06 +03:00
type
t1<T> = class where T: t1<T>;
function p1: T;
begin
var a: t1<T>;
var b := a as T;
end;
end;
begin
end.