pascalabcnet/TestSuite/units/u_partial_2429.pas
Sun Serega 9144f6211e tests
2021-02-07 14:29:53 +02:00

23 lines
325 B
ObjectPascal

unit u_partial_2429;
interface
type
t1 = partial class
function f1: integer;
end;
implementation
type
t0<T> = class
function f0 := 5;
end;
//Ошибка: Неизвестное имя 't1`1'
t1 = partial class(t0<byte>)
end;
function t1.f1 := self.f0;
begin end.