pascalabcnet/TestSuite/yield_class_const.pas

15 lines
172 B
ObjectPascal
Raw Normal View History

2020-03-13 23:44:05 +03:00
type
t1 = class
v1: integer;
const c1 = 5;
function f1: sequence of byte;
begin
yield c1;
end;
end;
begin
Assert(True);
end.