pascalabcnet/TestSuite/refactoring_tests/rename_tests/class_predef1.pas

15 lines
143 B
ObjectPascal
Raw Permalink Normal View History

2022-10-31 12:49:39 +03:00
type
{!}t1 = class;
t2 = class
b: {@}t1;
end;
{!}t1 = class
a: integer;
end;
begin
var o: t2;
o.b.a := 2;
end.