| 15 | }; |
| 16 | |
| 17 | int main() |
| 18 | { |
| 19 | A* a = new A[3]{}; |
| 20 | |
| 21 | delete[] a; |
| 22 | |
| 23 | int* i = new int[3]{2, 3}; |
| 24 | |
| 25 | int* x = new int{2}; |
| 26 | |
| 27 | B b1{}; |
| 28 | |
| 29 | B b2{static_cast<B&&>(b1)}; |
| 30 | } |
nothing calls this directly
no outgoing calls
no test coverage detected