-
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.
Add a test that emitting diagnostics does not require the crate to use
the corresponding feature.
- Loading branch information
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
tests/ui/diagnostic_namespace/on_unimplemented/auxiliary/other.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,8 @@ | ||
#![feature(diagnostic_namespace)] | ||
|
||
#[diagnostic::on_unimplemented( | ||
message = "Message", | ||
note = "Note", | ||
label = "label" | ||
)] | ||
pub trait Foo {} |
12 changes: 12 additions & 0 deletions
12
tests/ui/diagnostic_namespace/on_unimplemented/error_is_shown_in_downstream_crates.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,12 @@ | ||
// aux-build:other.rs | ||
|
||
extern crate other; | ||
|
||
use other::Foo; | ||
|
||
fn take_foo(_: impl Foo) {} | ||
|
||
fn main() { | ||
take_foo(()); | ||
//~^ERROR Message | ||
} |
19 changes: 19 additions & 0 deletions
19
tests/ui/diagnostic_namespace/on_unimplemented/error_is_shown_in_downstream_crates.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,19 @@ | ||
error[E0277]: Message | ||
--> $DIR/error_is_shown_in_downstream_crates.rs:10:14 | ||
| | ||
LL | take_foo(()); | ||
| -------- ^^ label | ||
| | | ||
| required by a bound introduced by this call | ||
| | ||
= help: the trait `Foo` is not implemented for `()` | ||
= note: Note | ||
note: required by a bound in `take_foo` | ||
--> $DIR/error_is_shown_in_downstream_crates.rs:7:21 | ||
| | ||
LL | fn take_foo(_: impl Foo) {} | ||
| ^^^ required by this bound in `take_foo` | ||
|
||
error: aborting due to 1 previous error | ||
|
||
For more information about this error, try `rustc --explain E0277`. |