GDS variables connection between PLCnext engineer and C++ PLM component

I am using the toolchain version is 2021.6 for the AXC F 3152.
In an array of of type struct some fields can’t be assigned when debugging.

struct _Test
   {
     Arp::uint16 Int1;
     Arp::int8 Int2;
     Arp::int16 Int3;
     Arp::int32 Int4;
}
  //#port
  //#attributes(Input)
  //#name(TEST)
   _Test TEST[2];

I the last element(Int4) of TEST[0] could not be assigned correctly for debugging, And the whole TEST[1] could not also.

PROFIdrive_2_001.pdf

Hello Marcel,
i can not reproduce the problem using.
plcncli 22.0.0.952 (22.0.0.952)
And an AXC F 2152
Arpversion: 22.0.4.143
GIT Commit Hash: e6a3b319782548cb0d19ecd40e356b6579137152
Build Job: “jenkins-PLCnext-Yocto_Targets-Yocto_AXCF2152-release%2F22.0.x-143”
image.png struct _Test
{
Arp::uint16 Int1;
Arp::int8 Int2;
Arp::int16 Int3;
Arp::int32 Int4;
};
//#port
//#attributes(Input)
//#name(TEST)
_Test TEST[2]{};

Are you talking about Debugging in C++ or the IEC part?