1error: C++ does not allow pointer to reference as a type
2 --> tests/ui/ptr_unsupported.rs:6:38
3  |
46 |         fn get_ptr_to_reference() -> *mut &C;
5  |                                      ^^^^^^^
6
7error: unsupported unique_ptr target type
8 --> tests/ui/ptr_unsupported.rs:7:38
9  |
107 |         fn get_uniqueptr_to_ptr() -> UniquePtr<*mut C>;
11  |                                      ^^^^^^^^^^^^^^^^^
12
13error: unsupported vector element type
14 --> tests/ui/ptr_unsupported.rs:8:45
15  |
168 |         fn get_vector_of_ptr() -> UniquePtr<CxxVector<*mut C>>;
17  |                                             ^^^^^^^^^^^^^^^^^
18