Skip to content

Commit 0420231

Browse files
authored
Rollup merge of #98686 - matthiaskrgr:test-46511, r=compiler-errors
add ice test for 46511 Fixes #46511 r? ``@compiler-errors``
2 parents 41e7991 + ddb6313 commit 0420231

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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`.

0 commit comments

Comments
 (0)