Skip to content

Commit

Permalink
Rollup merge of rust-lang#98686 - matthiaskrgr:test-46511, r=compiler…
Browse files Browse the repository at this point in the history
…-errors

add ice test for 46511

Fixes rust-lang#46511

r? `@compiler-errors`
  • Loading branch information
matthiaskrgr committed Jun 30, 2022
2 parents 399846d + ddb6313 commit 7446818
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/test/ui/const-generics/issue-46511.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// check-fail

struct Foo<'a> //~ ERROR parameter `'a` is never used [E0392]
{
_a: [u8; std::mem::size_of::<&'a mut u8>()] //~ ERROR a non-static lifetime is not allowed in a `const`
}

pub fn main() {}
21 changes: 21 additions & 0 deletions src/test/ui/const-generics/issue-46511.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
error[E0658]: a non-static lifetime is not allowed in a `const`
--> $DIR/issue-46511.rs:5:35
|
LL | _a: [u8; std::mem::size_of::<&'a mut u8>()]
| ^^
|
= note: see issue #76560 <https://github.com/rust-lang/rust/issues/76560> for more information
= help: add `#![feature(generic_const_exprs)]` to the crate attributes to enable

error[E0392]: parameter `'a` is never used
--> $DIR/issue-46511.rs:3:12
|
LL | struct Foo<'a>
| ^^ unused parameter
|
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData`

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0392, E0658.
For more information about an error, try `rustc --explain E0392`.

0 comments on commit 7446818

Please sign in to comment.