pascalabcnet/TestSuite/units/u_classconst2.pas

12 lines
187 B
ObjectPascal
Raw Permalink Normal View History

2021-11-07 13:39:36 +03:00
unit u_classconst2;
type
t1 = class
public const arr: array of string = ('abc', 'def');
public static function f1: array of string := arr;
end;
begin
end.