Skip to content

Commit 3d03a8a

Browse files
committed
Fix a span for one of the test cases
1 parent 9017b97 commit 3d03a8a

File tree

2 files changed

+15
-29
lines changed

2 files changed

+15
-29
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
#![feature(diagnostic_namespace)]
22

33
#[diagnostic::on_unimplemented(
4+
if(Self = "()"),
45
//~^WARN malformed `on_unimplemented` attribute
56
//~|WARN malformed `on_unimplemented` attribute
6-
if(Self = ()),
7-
message = "not used yet",
8-
label = "not used yet",
9-
note = "not used yet"
7+
message = "custom message",
8+
note = "custom note"
109
)]
1110
#[diagnostic::on_unimplemented(message = "fallback!!")]
1211
#[diagnostic::on_unimplemented(label = "fallback label")]
1312
#[diagnostic::on_unimplemented(note = "fallback note")]
14-
#[diagnostic::on_unimplemented(message = "fallback2!!")]
1513
trait Foo {}
1614

1715
fn takes_foo(_: impl Foo) {}
1816

1917
fn main() {
2018
takes_foo(());
21-
//~^ERROR fallback!!
19+
//~^ERROR custom message
2220
}

tests/ui/diagnostic_namespace/on_unimplemented/ignore_unsupported_options_and_continue_to_use_fallback.stderr

+11-23
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,38 @@
11
warning: malformed `on_unimplemented` attribute
2-
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:3:1
2+
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:4:5
33
|
4-
LL | / #[diagnostic::on_unimplemented(
5-
LL | |
6-
LL | |
7-
LL | | if(Self = ()),
8-
... |
9-
LL | | note = "not used yet"
10-
LL | | )]
11-
| |__^ invalid option found here
4+
LL | if(Self = "()"),
5+
| ^^^^^^^^^^^^^^^ invalid option found here
126
|
137
= help: only `message`, `note` and `label` are allowed as options
148
= note: `#[warn(unknown_or_malformed_diagnostic_attributes)]` on by default
159

1610
warning: malformed `on_unimplemented` attribute
17-
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:3:1
11+
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:4:5
1812
|
19-
LL | / #[diagnostic::on_unimplemented(
20-
LL | |
21-
LL | |
22-
LL | | if(Self = ()),
23-
... |
24-
LL | | note = "not used yet"
25-
LL | | )]
26-
| |__^ invalid option found here
13+
LL | if(Self = "()"),
14+
| ^^^^^^^^^^^^^^^ invalid option found here
2715
|
2816
= help: only `message`, `note` and `label` are allowed as options
2917
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
3018

31-
error[E0277]: fallback!!
32-
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:20:15
19+
error[E0277]: custom message
20+
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:18:15
3321
|
3422
LL | takes_foo(());
3523
| --------- ^^ fallback label
3624
| |
3725
| required by a bound introduced by this call
3826
|
3927
= help: the trait `Foo` is not implemented for `()`
40-
= note: fallback note
28+
= note: custom note
4129
help: this trait has no implementations, consider adding one
42-
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:15:1
30+
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:13:1
4331
|
4432
LL | trait Foo {}
4533
| ^^^^^^^^^
4634
note: required by a bound in `takes_foo`
47-
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:17:22
35+
--> $DIR/ignore_unsupported_options_and_continue_to_use_fallback.rs:15:22
4836
|
4937
LL | fn takes_foo(_: impl Foo) {}
5038
| ^^^ required by this bound in `takes_foo`

0 commit comments

Comments
 (0)