alias S: Int = 256
alias S2: Int = S*S
alias SquareMatrix = SIMD[size=S2]
def main():
var sqms = List[SquareMatrix[DType.float32]]()
for ind in range(2): # using 1 instead of 2 gives no issues
sqm = SquareMatrix[DType.float32]()
sqms.append(sqm)
print('success!') # we never get here :(