pascalabcnet/TestSuite/errors/err0510_anonymous_generic_delegates.pas
Ivan Bondarev d602e87f18 #2688
#2678
2022-07-29 12:32:48 +02:00

20 lines
589 B
ObjectPascal
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//!Нельзя вывести тип анонимного делегата с генерик-параметрами. Укажите тип переменной явно.
type
t1<T> = class
// Обязательно функция
function f1(b: T): byte := 1;
end;
procedure p1<T>;
begin
// Обязательно <T> из заголовка подпрограммы (не из описавшего её класса!)
var a: t1<T>;
// Обязательно авто-определение типа делегата f
var f := a.f1;
end;
begin
end.