-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check that the types in RPITITs are WF
- Loading branch information
1 parent
98f3001
commit fd2766e
Showing
3 changed files
with
93 additions
and
0 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,16 @@ | ||
// issue #101663 | ||
|
||
#![feature(return_position_impl_trait_in_trait)] | ||
#![allow(incomplete_features)] | ||
|
||
trait Wf<T> {} | ||
|
||
trait Uwu { | ||
fn nya() -> impl Wf<Vec<[u8]>>; | ||
//~^ ERROR the size for values of type `[u8]` cannot be known at compilation time | ||
|
||
fn nya2() -> impl Wf<[u8]>; | ||
//~^ ERROR the size for values of type `[u8]` cannot be known at compilation time | ||
} | ||
|
||
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,33 @@ | ||
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time | ||
--> $DIR/wf-bounds.rs:9:22 | ||
| | ||
LL | fn nya() -> impl Wf<Vec<[u8]>>; | ||
| ^^^^^^^^^^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `[u8]` | ||
note: required by a bound in `Vec` | ||
--> $SRC_DIR/alloc/src/vec/mod.rs:LL:COL | ||
| | ||
LL | pub struct Vec<T, #[unstable(feature = "allocator_api", issue = "32838")] A: Allocator = Global> { | ||
| ^ required by this bound in `Vec` | ||
|
||
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time | ||
--> $DIR/wf-bounds.rs:12:23 | ||
| | ||
LL | fn nya2() -> impl Wf<[u8]>; | ||
| ^^^^^^^^ doesn't have a size known at compile-time | ||
| | ||
= help: the trait `Sized` is not implemented for `[u8]` | ||
note: required by a bound in `Wf` | ||
--> $DIR/wf-bounds.rs:6:10 | ||
| | ||
LL | trait Wf<T> {} | ||
| ^ required by this bound in `Wf` | ||
help: consider relaxing the implicit `Sized` restriction | ||
| | ||
LL | trait Wf<T: ?Sized> {} | ||
| ++++++++ | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0277`. |