pascalabcnet/TestSuite/intellisense_tests/unit2.pas

19 lines
185 B
ObjectPascal
Raw Permalink Normal View History

2022-11-02 22:18:17 +03:00
unit unit2;
interface
implementation
type
c1 = class
f1: string;
end;
procedure pr1;
begin
var i1:= new c1;
i1.f1{@var c1.f1: string;@} := '';
end;
end.