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.
Rollup merge of rust-lang#130123 - FedericoBruzzone:master, r=compiler-errors Report the `note` when specified in `diagnostic::on_unimplemented` Before this PR the `note` field was completely ignored for some reason, now it is shown (I think) correctly during the hir typechecking phase. 1. Report the `note` when specified in `diagnostic::on_unimplemented` 2. Added a test for unimplemented trait diagnostic 3. Added a test for custom unimplemented trait diagnostic Close rust-lang#130084 P.S. This is my first PR to rustc.
- Loading branch information
Showing
4 changed files
with
62 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#[diagnostic::on_unimplemented(message = "my message", label = "my label", note = "my note")] | ||
pub trait ProviderLt {} | ||
|
||
pub trait ProviderExt { | ||
fn request<R>(&self) { | ||
todo!() | ||
} | ||
} | ||
|
||
impl<T: ?Sized + ProviderLt> ProviderExt for T {} | ||
|
||
struct B; | ||
|
||
fn main() { | ||
B.request(); | ||
//~^ my message [E0599] | ||
//~| my label | ||
//~| my note | ||
} |
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,32 @@ | ||
error[E0599]: my message | ||
--> $DIR/custom-on-unimplemented-diagnostic.rs:15:7 | ||
| | ||
LL | struct B; | ||
| -------- method `request` not found for this struct because it doesn't satisfy `B: ProviderExt` or `B: ProviderLt` | ||
... | ||
LL | B.request(); | ||
| ^^^^^^^ my label | ||
| | ||
note: trait bound `B: ProviderLt` was not satisfied | ||
--> $DIR/custom-on-unimplemented-diagnostic.rs:10:18 | ||
| | ||
LL | impl<T: ?Sized + ProviderLt> ProviderExt for T {} | ||
| ^^^^^^^^^^ ----------- - | ||
| | | ||
| unsatisfied trait bound introduced here | ||
= note: my note | ||
note: the trait `ProviderLt` must be implemented | ||
--> $DIR/custom-on-unimplemented-diagnostic.rs:2:1 | ||
| | ||
LL | pub trait ProviderLt {} | ||
| ^^^^^^^^^^^^^^^^^^^^ | ||
= help: items from traits can only be used if the trait is implemented and in scope | ||
note: `ProviderExt` defines an item `request`, perhaps you need to implement it | ||
--> $DIR/custom-on-unimplemented-diagnostic.rs:4:1 | ||
| | ||
LL | pub trait ProviderExt { | ||
| ^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0599`. |