pascalabcnet/TestSuite/namespaces/nsyield1.pas

12 lines
144 B
ObjectPascal
Raw Permalink Normal View History

2019-10-20 15:12:23 +03:00
namespace nsyield1;
type
T1 = class
public static function Seq(): sequence of integer;
begin
yield 1;
end;
end;
end.