]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/issue-46511.stderr
Rollup merge of #99479 - Enselic:import-can-be-without-id, r=camelid
[rust.git] / src / test / ui / const-generics / issue-46511.stderr
1 error[E0658]: a non-static lifetime is not allowed in a `const`
2   --> $DIR/issue-46511.rs:5:35
3    |
4 LL |     _a: [u8; std::mem::size_of::<&'a mut u8>()]
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[E0392]: parameter `'a` is never used
11   --> $DIR/issue-46511.rs:3:12
12    |
13 LL | struct Foo<'a>
14    |            ^^ unused parameter
15    |
16    = help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0392, E0658.
21 For more information about an error, try `rustc --explain E0392`.