pascalabcnet/TestSuite/intellisense_tests/constr2.pas

27 lines
335 B
ObjectPascal
Raw Permalink Normal View History

2019-01-31 22:36:28 +03:00
type
t1 = class
static constructor;
constructor;
constructor(i: integer);
end;
static constructor t1.Create{@static constructor t1();@};
begin
end;
constructor t1.Create{@constructor t1();@};
begin
end;
constructor t1.Create{@constructor t1(i: integer);@}(i: integer);
begin
end;
begin
end.