pascalabcnet/TestSuite/intellisense_tests/unit2.pas
2022-11-02 20:18:17 +01:00

19 lines
185 B
ObjectPascal

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.