pascalabcnet/TestSuite/units/u_where2.pas
Ivan Bondarev 34ebdb7702 bug fix #2382
bug fix #2379
2021-01-03 12:04:45 +01:00

12 lines
126 B
ObjectPascal

unit u_where2;
type
t0<T> = class
where T: t0<T>;
procedure p1(a: T); virtual := exit;
end;
end.