-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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 #75260 - davidtwco:polymorphization-promoted-substs, r=…
…lcnr polymorphize: unevaluated constants This PR makes polymorphization visit the promoted MIR of unevaluated constants with available promoted MIR instead of visiting the substitutions of that constant - which will mark all of the generic parameters as used; in addition polymorphization will now visit non-promoted unevaluated constants rather than visit their substs. r? @lcnr
- Loading branch information
Showing
8 changed files
with
104 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// build-fail | ||
// compile-flags: -Zpolymorphize=on | ||
#![crate_type = "lib"] | ||
#![feature(rustc_attrs)] | ||
|
||
fn foo<'a>(_: &'a ()) {} | ||
|
||
#[rustc_polymorphize_error] | ||
pub fn test<T>() { | ||
//~^ ERROR item has unused generic parameters | ||
foo(&()); | ||
} |
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,8 @@ | ||
error: item has unused generic parameters | ||
--> $DIR/promoted-function-1.rs:9:8 | ||
| | ||
LL | pub fn test<T>() { | ||
| ^^^^ - generic parameter `T` is unused | ||
|
||
error: aborting due to previous error | ||
|
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,16 @@ | ||
// build-fail | ||
// compile-flags:-Zpolymorphize=on | ||
#![crate_type = "lib"] | ||
#![feature(lazy_normalization_consts, rustc_attrs)] | ||
//~^ WARN the feature `lazy_normalization_consts` is incomplete | ||
|
||
#[rustc_polymorphize_error] | ||
fn test<T>() { | ||
//~^ ERROR item has unused generic parameters | ||
let x = [0; 3 + 4]; | ||
} | ||
|
||
pub fn caller() { | ||
test::<String>(); | ||
test::<Vec<String>>(); | ||
} |
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,17 @@ | ||
warning: the feature `lazy_normalization_consts` is incomplete and may not be safe to use and/or cause compiler crashes | ||
--> $DIR/promoted-function-2.rs:4:12 | ||
| | ||
LL | #![feature(lazy_normalization_consts, rustc_attrs)] | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
= note: `#[warn(incomplete_features)]` on by default | ||
= note: see issue #72219 <https://github.com/rust-lang/rust/issues/72219> for more information | ||
|
||
error: item has unused generic parameters | ||
--> $DIR/promoted-function-2.rs:8:4 | ||
| | ||
LL | fn test<T>() { | ||
| ^^^^ - generic parameter `T` is unused | ||
|
||
error: aborting due to previous error; 1 warning emitted | ||
|
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
// run-pass | ||
// compile-flags:-Zpolymorphize=on | ||
|
||
fn fop<T>() {} | ||
|
||
fn bar<T>() -> &'static fn() { | ||
|
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