pascalabcnet/TestSuite/namespaces/nsyield1.pas
Бондарев Иван b895f2823c bug fix #2024
2019-10-20 14:12:23 +02:00

12 lines
144 B
ObjectPascal

namespace nsyield1;
type
T1 = class
public static function Seq(): sequence of integer;
begin
yield 1;
end;
end;
end.