File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
src/test/ui/const-generics Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ // check-fail
2+
3+ struct Foo < ' a > //~ ERROR parameter `'a` is never used [E0392]
4+ {
5+ _a : [ u8 ; std:: mem:: size_of :: < & ' a mut u8 > ( ) ] //~ ERROR a non-static lifetime is not allowed in a `const`
6+ }
7+
8+ pub fn main ( ) { }
Original file line number Diff line number Diff line change 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`.
You can’t perform that action at this time.
0 commit comments