Titel klingt bisl komisch, es ist aber folgendes gemeint:
Delphi-Quellcode:
type THallo = record
a, b: Integer;
end;
const THuhu: THallo = (a: 1; b:2);
type TTest = record
a: Integer;
b: THallo;
end;
const TTest2: TTest = (a: 1; b: THuhu);
der Fehler tritt in TTest2 bei b: THuhu auf
Theoretisch möchte ich ein
TTest2 = (a:1; b: (a:1; b:2));
haben. Danke