1error: expected mut or const in raw pointer type
2 --> $DIR/ptr_no_const_mut.rs:6:43
3  |
46 |         fn get_neither_const_nor_mut() -> *C;
5  |                                           ^ expected mut or const in raw pointer type
6  |
7  = help: use `*mut T` or `*const T` as appropriate
8
9error: expected `const` or `mut`
10 --> $DIR/ptr_no_const_mut.rs:6:44
11  |
126 |         fn get_neither_const_nor_mut() -> *C;
13  |                                            ^
14