-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 #122078 - gurry:121443-ice-layout-is-sized-alt, r=<try>
Check that return type is WF in typeck Ensures that non-WF types do not pass typeck and then later ICE in MIR/const eval Fixes #121443
- Loading branch information
Showing
13 changed files
with
168 additions
and
8 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
16 changes: 16 additions & 0 deletions
16
tests/ui/trait-bounds/ice-unsized-tuple-const-issue-121443.rs
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 @@ | ||
// Regression test for #121443 | ||
// Checks that no ICE occurs upon encountering | ||
// a tuple with unsized element that is not | ||
// the last element | ||
|
||
type Fn = dyn FnOnce() -> u8; | ||
|
||
const TEST: Fn = some_fn; | ||
//~^ ERROR cannot find value `some_fn` in this scope | ||
//~| ERROR the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
//~| ERROR the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
const TEST2: (Fn, u8) = (TEST, 0); | ||
//~^ ERROR the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
//~| ERROR the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
|
||
fn main() {} |
45 changes: 45 additions & 0 deletions
45
tests/ui/trait-bounds/ice-unsized-tuple-const-issue-121443.stderr
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,45 @@ | ||
error[E0425]: cannot find value `some_fn` in this scope | ||
--> $DIR/ice-unsized-tuple-const-issue-121443.rs:8:18 | ||
| | ||
LL | const TEST: Fn = some_fn; | ||
| ^^^^^^^ not found in this scope | ||
|
||
error[E0277]: the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
--> $DIR/ice-unsized-tuple-const-issue-121443.rs:8:13 | ||
| | ||
LL | const TEST: Fn = some_fn; | ||
| ^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `(dyn FnOnce() -> u8 + 'static)` | ||
|
||
error[E0277]: the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
--> $DIR/ice-unsized-tuple-const-issue-121443.rs:8:18 | ||
| | ||
LL | const TEST: Fn = some_fn; | ||
| ^^^^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `(dyn FnOnce() -> u8 + 'static)` | ||
= note: constant expressions must have a statically known size | ||
|
||
error[E0277]: the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
--> $DIR/ice-unsized-tuple-const-issue-121443.rs:12:14 | ||
| | ||
LL | const TEST2: (Fn, u8) = (TEST, 0); | ||
| ^^^^^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `(dyn FnOnce() -> u8 + 'static)` | ||
= note: only the last element of a tuple may have a dynamically sized type | ||
|
||
error[E0277]: the size for values of type `(dyn FnOnce() -> u8 + 'static)` cannot be known at compilation time | ||
--> $DIR/ice-unsized-tuple-const-issue-121443.rs:12:25 | ||
| | ||
LL | const TEST2: (Fn, u8) = (TEST, 0); | ||
| ^^^^^^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `(dyn FnOnce() -> u8 + 'static)` | ||
= note: only the last element of a tuple may have a dynamically sized type | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
Some errors have detailed explanations: E0277, E0425. | ||
For more information about an error, try `rustc --explain E0277`. |
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