1### Compilation failed: 2 3error: 9: operator ',' can not operate on arrays (or structs containing arrays) 4 myStruct, 123; 5 ^^^^^^^^ 6error: 10: operator ',' can not operate on arrays (or structs containing arrays) 7 123, myStruct; 8 ^^^^^^^^ 9error: 11: operator ',' can not operate on arrays (or structs containing arrays) 10 myArray, 123; 11 ^^^^^^^ 12error: 12: operator ',' can not operate on arrays (or structs containing arrays) 13 123, myArray; 14 ^^^^^^^ 15error: 13: operator ',' can not operate on arrays (or structs containing arrays) 16 myArray, myStruct; 17 ^^^^^^^ 18error: 14: operator ',' can not operate on arrays (or structs containing arrays) 19 myStruct, myArray; 20 ^^^^^^^^ 216 errors 22