pascalabcnet/TestSuite/yieldwithconstructor.pas
miks1965 b5892cb1db bug fix #635
Release 3.3.0.1611
2018-01-06 14:02:18 +03:00

17 lines
222 B
ObjectPascal

type
t1 = class
public constructor(a: object);
begin
end;
public function f1: sequence of byte;
begin
yield 0;
end;
end;
begin
Assert(t1.Create(nil).f1.First = 0);
end.