So, people. I have a aparently simple question. Does Delphi consider the next example as a Circular reference? I'm reaching Out of Memory Error with a similar set of code.
unit CodeA;
interface
uses CodeB;
implementation
end.
-
unit CodeB;
interface
uses CodeC;
implementation
end.
-
unit CodeC;
interface
uses CodeA;
implementation
end.