-
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.
Showing
4 changed files
with
148 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#![feature(associated_type_defaults)] | ||
|
||
trait MyDisplay { fn method(&self) { } } | ||
|
||
impl<'a, T: MyDisplay> MyDisplay for &'a mut T { } | ||
|
||
struct T; | ||
|
||
trait MPU { | ||
type MpuConfig: MyDisplay = T; | ||
//~^ ERROR the trait bound `T: MyDisplay` is not satisfied | ||
} | ||
|
||
struct S; | ||
|
||
impl MPU for S { } | ||
//~^ ERROR the trait bound `T: MyDisplay` is not satisfied | ||
|
||
trait MyWrite { | ||
fn my_write(&self, _: &dyn MyDisplay) { } | ||
} | ||
|
||
trait ProcessType { | ||
fn process_detail_fmt(&self, _: &mut dyn MyWrite); | ||
} | ||
|
||
struct Process; | ||
|
||
impl ProcessType for Process { | ||
fn process_detail_fmt(&self, writer: &mut dyn MyWrite) | ||
{ | ||
|
||
let mut val: Option<<S as MPU>::MpuConfig> = None; | ||
let valref: &mut <S as MPU>::MpuConfig = val.as_mut().unwrap(); | ||
|
||
// // This causes a different ICE (but its similar if you squint right): | ||
// // | ||
// // `Unimplemented` selecting `Binder(<T as MyDisplay>)` during codegen | ||
// | ||
// writer.my_write(valref) | ||
|
||
// This one causes the ICE: | ||
// FulfillmentError(Obligation(predicate=Binder(TraitPredicate(<T as MyDisplay>)), depth=1),Unimplemented) | ||
let closure = |config: &mut <S as MPU>::MpuConfig| writer.my_write(&config); | ||
closure(valref); | ||
} | ||
} | ||
|
||
fn create() -> &'static dyn ProcessType { | ||
let input: Option<&mut Process> = None; | ||
let process: &mut Process = input.unwrap(); | ||
process | ||
} | ||
|
||
pub fn main() { | ||
create(); | ||
} |
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 @@ | ||
error[E0277]: the trait bound `T: MyDisplay` is not satisfied | ||
--> $DIR/issue-65774-1.rs:10:21 | ||
| | ||
LL | trait MPU { | ||
| --------- required by `MPU` | ||
LL | type MpuConfig: MyDisplay = T; | ||
| ^^^^^^^^^ the trait `MyDisplay` is not implemented for `T` | ||
|
||
error[E0277]: the trait bound `T: MyDisplay` is not satisfied | ||
--> $DIR/issue-65774-1.rs:16:6 | ||
| | ||
LL | impl MPU for S { } | ||
| ^^^ the trait `MyDisplay` is not implemented for `T` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#![feature(associated_type_defaults)] | ||
|
||
trait MyDisplay { fn method(&self) { } } | ||
|
||
impl<'a, T: MyDisplay> MyDisplay for &'a mut T { } | ||
|
||
struct T; | ||
|
||
trait MPU { | ||
type MpuConfig: MyDisplay = T; | ||
//~^ ERROR the trait bound `T: MyDisplay` is not satisfied | ||
} | ||
|
||
struct S; | ||
|
||
impl MPU for S { } | ||
//~^ ERROR the trait bound `T: MyDisplay` is not satisfied | ||
|
||
trait MyWrite { | ||
fn my_write(&self, _: &dyn MyDisplay) { } | ||
} | ||
|
||
trait ProcessType { | ||
fn process_detail_fmt(&self, _: &mut dyn MyWrite); | ||
} | ||
|
||
struct Process; | ||
|
||
impl ProcessType for Process { | ||
fn process_detail_fmt(&self, writer: &mut dyn MyWrite) | ||
{ | ||
|
||
let mut val: Option<<S as MPU>::MpuConfig> = None; | ||
let valref: &mut <S as MPU>::MpuConfig = val.as_mut().unwrap(); | ||
|
||
// // This causes a different ICE (but its similar if you squint right): | ||
// // | ||
// // `Unimplemented` selecting `Binder(<T as MyDisplay>)` during codegen | ||
// | ||
writer.my_write(valref) | ||
|
||
// This one causes the ICE: | ||
// FulfillmentError(Obligation(predicate=Binder(TraitPredicate(<T as MyDisplay>)), depth=1),Unimplemented) | ||
/*let closure = |config: &mut <S as MPU>::MpuConfig| writer.my_write(&config); | ||
closure(valref);*/ | ||
} | ||
} | ||
|
||
fn create() -> &'static dyn ProcessType { | ||
let input: Option<&mut Process> = None; | ||
let process: &mut Process = input.unwrap(); | ||
process | ||
} | ||
|
||
pub fn main() { | ||
create(); | ||
} |
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 @@ | ||
error[E0277]: the trait bound `T: MyDisplay` is not satisfied | ||
--> $DIR/issue-65774-2.rs:10:21 | ||
| | ||
LL | trait MPU { | ||
| --------- required by `MPU` | ||
LL | type MpuConfig: MyDisplay = T; | ||
| ^^^^^^^^^ the trait `MyDisplay` is not implemented for `T` | ||
|
||
error[E0277]: the trait bound `T: MyDisplay` is not satisfied | ||
--> $DIR/issue-65774-2.rs:16:6 | ||
| | ||
LL | impl MPU for S { } | ||
| ^^^ the trait `MyDisplay` is not implemented for `T` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0277`. |