pascalabcnet/TestSuite/errors/err0506.pas
Ivan Bondarev 416172164d #2644
2022-04-03 13:41:13 +02:00

8 lines
244 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.

//!Обобщённая функция p1 не может быть вызвана с данным набором фактических параметров
procedure p1<T1>(d: T1->()) := exit;
function f(b: byte) := 0;
begin
p1(f);
end.