| 155 | |
| 156 | struct StructInArray { |
| 157 | StructInArray() : attr1(0), attr2(0) {} |
| 158 | StructInArray(int _attr1, int _attr2) : attr1(_attr1), attr2(_attr2) {} |
| 159 | int attr1; |
| 160 | int attr2; |
nothing calls this directly
no outgoing calls
no test coverage detected