]> git.lizzy.rs Git - rust.git/blob - src/test/ui/c-variadic/variadic-ffi-6.stderr
Rollup merge of #106043 - c410-f3r:moar-errors, r=petrochenkov
[rust.git] / src / test / ui / c-variadic / variadic-ffi-6.stderr
1 error[E0106]: missing lifetime specifier
2   --> $DIR/variadic-ffi-6.rs:7:6
3    |
4 LL | ) -> &usize {
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
8 help: consider using the `'static` lifetime
9    |
10 LL | ) -> &'static usize {
11    |       +++++++
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0106`.