Vendor dependencies
Let's see how I like this workflow.
This commit is contained in:
parent
34d1830413
commit
9c435dc440
7500 changed files with 1665121 additions and 99 deletions
18
vendor/cxx/tests/ui/ptr_no_const_mut.stderr
vendored
Normal file
18
vendor/cxx/tests/ui/ptr_no_const_mut.stderr
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
error: expected `mut` or `const` keyword in raw pointer type
|
||||
--> tests/ui/ptr_no_const_mut.rs:6:43
|
||||
|
|
||||
6 | fn get_neither_const_nor_mut() -> *C;
|
||||
| ^
|
||||
|
|
||||
help: add `mut` or `const` here
|
||||
|
|
||||
6 | fn get_neither_const_nor_mut() -> *const C;
|
||||
| +++++
|
||||
6 | fn get_neither_const_nor_mut() -> *mut C;
|
||||
| +++
|
||||
|
||||
error: expected `const` or `mut`
|
||||
--> tests/ui/ptr_no_const_mut.rs:6:44
|
||||
|
|
||||
6 | fn get_neither_const_nor_mut() -> *C;
|
||||
| ^
|
||||
Loading…
Add table
Add a link
Reference in a new issue