scheint wohl nicht zu gehn
und nichmal das geht ... Hallo.a ist
keine Konstante
Delphi-Quellcode:
type THallo = record
a, b: Integer;
end;
const Hallo: THallo = (a: 1; b: 2);
type TTest = record
c: Integer;
d: THallo;
end;
const Test: TTest = (c: 1; d: (a: Hallo.a; b: Hallo.b));