]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lifetimes/issue-64173-unused-lifetimes.stderr
Rollup merge of #105555 - krasimirgg:llvm-int-opt-2, r=cuviper
[rust.git] / src / test / ui / lifetimes / issue-64173-unused-lifetimes.stderr
1 error[E0658]: a non-static lifetime is not allowed in a `const`
2   --> $DIR/issue-64173-unused-lifetimes.rs:16:23
3    |
4 LL |     beta: [(); foo::<&'a ()>()],
5    |                       ^^
6    |
7    = note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information
8    = help: add `#![feature(generic_const_exprs)]` to the crate attributes to enable
9
10 error: generic `Self` types are currently not permitted in anonymous constants
11   --> $DIR/issue-64173-unused-lifetimes.rs:4:28
12    |
13 LL |     array: [(); size_of::<&Self>()],
14    |                            ^^^^
15
16 error[E0392]: parameter `'s` is never used
17   --> $DIR/issue-64173-unused-lifetimes.rs:3:12
18    |
19 LL | struct Foo<'s> {
20    |            ^^ unused parameter
21    |
22    = help: consider removing `'s`, referring to it in a field, or using a marker such as `PhantomData`
23
24 error[E0392]: parameter `'a` is never used
25   --> $DIR/issue-64173-unused-lifetimes.rs:15:12
26    |
27 LL | struct Bar<'a> {
28    |            ^^ unused parameter
29    |
30    = help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
31
32 error: aborting due to 4 previous errors
33
34 Some errors have detailed explanations: E0392, E0658.
35 For more information about an error, try `rustc --explain E0392`.