| 163 | class ArrayClass { |
| 164 | public: |
| 165 | ArrayClass() { |
| 166 | for (int i = 0; i < 8; i++) { |
| 167 | int_array[i] = i; |
| 168 | struct_array[i] = StructInArray(i, -i); |
| 169 | struct_ptr_array[i] = NULL; |
| 170 | } |
| 171 | } |
| 172 | int int_array[8]; |
| 173 | StructInArray struct_array[8]; |
| 174 | StructInArray* struct_ptr_array[8]; |
nothing calls this directly
no test coverage detected