]> git.proxmox.com Git - rustc.git/blame - vendor/cxx/tests/ui/expected_named.stderr
New upstream version 1.71.1+dfsg1
[rustc.git] / vendor / cxx / tests / ui / expected_named.stderr
CommitLineData
49aad941
FG
1error[E0106]: missing lifetime specifier
2 --> tests/ui/expected_named.rs:5:36
3 |
45 | fn borrowed() -> UniquePtr<Borrowed>;
5 | ^^^^^^^^ expected named lifetime parameter
6 |
7 = help: this function's return type contains a borrowed value, but there is no value for it to be borrowed from
8help: consider using the `'static` lifetime
9 |
105 | fn borrowed() -> UniquePtr<Borrowed<'static>>;
11 | +++++++++