Adding an array to a struct in an array bug

Steps:

  1. Create a struct that holds an array.
  2. Use make structure to make a structure that has an array with elements.
  3. Add this to an array of the structure.

The arrays within each structure in the array will return with a length of 0.

Workaround:

Instead of using add use make array and then set the output from that as the array.

The arrays within each structure in the array will return the correct length.