| 106 | // test_multiple_inheritance_cpp |
| 107 | struct Base12 : Base1, Base2 { |
| 108 | Base12(int i, int j) : Base1(i), Base2(j) {} |
| 109 | }; |
| 110 | struct MIType : Base12 { |
| 111 | MIType(int i, int j) : Base12(i, j) {} |
nothing calls this directly
no outgoing calls
no test coverage detected