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
15
vendor/cxx/tests/ui/deny_elided_lifetimes.stderr
vendored
Normal file
15
vendor/cxx/tests/ui/deny_elided_lifetimes.stderr
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
error: hidden lifetime parameters in types are deprecated
|
||||
--> tests/ui/deny_elided_lifetimes.rs:21:50
|
||||
|
|
||||
21 | fn lifetime_elided(s: &i32) -> UniquePtr<Cpp>;
|
||||
| ^^^ expected lifetime parameter
|
||||
|
|
||||
note: the lint level is defined here
|
||||
--> tests/ui/deny_elided_lifetimes.rs:1:9
|
||||
|
|
||||
1 | #![deny(elided_lifetimes_in_paths)]
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
help: indicate the anonymous lifetime
|
||||
|
|
||||
21 | fn lifetime_elided(s: &i32) -> UniquePtr<Cpp<'_>>;
|
||||
| ++++
|
||||
Loading…
Add table
Add a link
Reference in a new issue