pascalabcnet/TestSuite/refactoring_tests/rename_tests/class_predef2.pas

15 lines
144 B
ObjectPascal
Raw Permalink Normal View History

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