pascalabcnet/TestSuite/intellisense_tests/create1.pas
Бондарев Иван e4466ab7c0 bug fix #188
2016-06-03 19:35:23 +02:00

9 lines
317 B
ObjectPascal

type A = class
f: sequence of integer;
end;
begin
A.Create{@constructor A();@}.f{@var A.f: sequence of integer;@}.Println;
A.Create().f{@var A.f: sequence of integer;@}.Println;
StringBuilder.Create{@constructor StringBuilder();@}.ToString{@function StringBuilder.ToString(): string; virtual;@};
end.