pascalabcnet/TestSuite/CompilationSamples/yieldunit1.pas
Бондарев Иван c6aecfef3b bug fix #780
2018-05-01 13:32:27 +02:00

17 lines
412 B
ObjectPascal

unit yieldunit1;
interface//обязательно описание t1.f1 в interface
type
t1 = class
function f1: sequence of byte;//f1 обязательно метод какого то класса
end;
implementation//обязательно реализация t1.f1 в implementation
function t1.f1: sequence of byte;//Ошибка
begin
yield 0;//обязательно yield
end;
end.