forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#96759 - compiler-errors:rollup-p4jtm92, r=com…
…piler-errors Rollup of 7 pull requests Successful merges: - rust-lang#96174 (mark ptr-int-transmute test as no_run) - rust-lang#96639 (Fix typo in `offset_from` documentation) - rust-lang#96704 (Add rotation animation on settings button when loading) - rust-lang#96730 (Add a regression test for rust-lang#64173 and rust-lang#66152) - rust-lang#96741 (Improve settings loading strategy) - rust-lang#96744 (Implement [OsStr]::join) - rust-lang#96747 (Add `track_caller` to `DefId::expect_local()`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
12 changed files
with
109 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
use std::mem::size_of; | ||
|
||
struct Foo<'s> { //~ ERROR: parameter `'s` is never used | ||
array: [(); size_of::<&Self>()], | ||
//~^ ERROR: generic `Self` types are currently not permitted in anonymous constants | ||
} | ||
|
||
// The below is taken from https://github.com/rust-lang/rust/issues/66152#issuecomment-550275017 | ||
// as the root cause seems the same. | ||
|
||
const fn foo<T>() -> usize { | ||
0 | ||
} | ||
|
||
struct Bar<'a> { //~ ERROR: parameter `'a` is never used | ||
beta: [(); foo::<&'a ()>()], //~ ERROR: a non-static lifetime is not allowed in a `const` | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
error[E0658]: a non-static lifetime is not allowed in a `const` | ||
--> $DIR/issue-64173-unused-lifetimes.rs:16:23 | ||
| | ||
LL | beta: [(); foo::<&'a ()>()], | ||
| ^^ | ||
| | ||
= 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: generic `Self` types are currently not permitted in anonymous constants | ||
--> $DIR/issue-64173-unused-lifetimes.rs:4:28 | ||
| | ||
LL | array: [(); size_of::<&Self>()], | ||
| ^^^^ | ||
|
||
error[E0392]: parameter `'s` is never used | ||
--> $DIR/issue-64173-unused-lifetimes.rs:3:12 | ||
| | ||
LL | struct Foo<'s> { | ||
| ^^ unused parameter | ||
| | ||
= help: consider removing `'s`, referring to it in a field, or using a marker such as `PhantomData` | ||
|
||
error[E0392]: parameter `'a` is never used | ||
--> $DIR/issue-64173-unused-lifetimes.rs:15:12 | ||
| | ||
LL | struct Bar<'a> { | ||
| ^^ unused parameter | ||
| | ||
= help: consider removing `'a`, referring to it in a field, or using a marker such as `PhantomData` | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
Some errors have detailed explanations: E0392, E0658. | ||
For more information about an error, try `rustc --explain E0392`. |