F2047 Circular unit reference
问题 i working with overload of operator, and i have this situation, fra a side: unit _TIns; interface uses _TExtract; type TIns = record private type TInsArray = array [1..90] of Boolean; var FInsArray: TInsArray; public class operator Implicit(const Value: TExtract): TIns; class operator Implicit(const Value: TIns): TExtract; end; implementation // Code end. and, from other side: unit _TExtract; interface uses _TIns; type TExtract = record private type TExtractEnum = 1 .. 90; var FExtractEnum: