Skip to content

Commit 2d0e8e2

Browse files
committed
--bless
1 parent 0759a55 commit 2d0e8e2

File tree

7 files changed

+18
-6
lines changed

7 files changed

+18
-6
lines changed

src/test/rustdoc-ui/error-in-impl-trait/async.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | error::_in::async_fn()
55
| ^^^^^^^^^^^^^^^^^^^^ could not resolve path `error::_in::async_fn`
66
|
77
= note: this error was originally ignored because you are running `rustdoc`
8-
= note: try running again with `rustc` and you may get a more detailed error
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
99

1010
error: aborting due to previous error
1111

src/test/rustdoc-ui/error-in-impl-trait/closure.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | || content::doesnt::matter()
55
| ^^^^^^^^^^^^^^^^^^^^^^^ could not resolve path `content::doesnt::matter`
66
|
77
= note: this error was originally ignored because you are running `rustdoc`
8-
= note: try running again with `rustc` and you may get a more detailed error
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
99

1010
error: aborting due to previous error
1111

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error[E0433]: failed to resolve: could not resolve path `DoesNotExist`
2+
--> $DIR/generic-argument.rs:5:11
3+
|
4+
LL | Vec::<DoesNotExist>::new()
5+
| ^^^^^^^^^^^^ could not resolve path `DoesNotExist`
6+
|
7+
= note: this error was originally ignored because you are running `rustdoc`
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
9+
10+
error: aborting due to previous error
11+
12+
For more information about this error, try `rustc --explain E0433`.

src/test/rustdoc-ui/error-in-impl-trait/impl-keyword-closure.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | (|| error::_in::impl_trait::alias::nested::closure())()
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not resolve path `error::_in::impl_trait::alias::nested::closure`
66
|
77
= note: this error was originally ignored because you are running `rustdoc`
8-
= note: try running again with `rustc` and you may get a more detailed error
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
99

1010
error: aborting due to previous error
1111

src/test/rustdoc-ui/error-in-impl-trait/impl-keyword.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | error::_in::impl_trait()
55
| ^^^^^^^^^^^^^^^^^^^^^^ could not resolve path `error::_in::impl_trait`
66
|
77
= note: this error was originally ignored because you are running `rustdoc`
8-
= note: try running again with `rustc` and you may get a more detailed error
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
99

1010
error: aborting due to previous error
1111

src/test/rustdoc-ui/error-in-impl-trait/trait-alias-closure.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | (|| error::_in::impl_trait::alias::nested::closure())()
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not resolve path `error::_in::impl_trait::alias::nested::closure`
66
|
77
= note: this error was originally ignored because you are running `rustdoc`
8-
= note: try running again with `rustc` and you may get a more detailed error
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
99

1010
error: aborting due to previous error
1111

src/test/rustdoc-ui/error-in-impl-trait/trait-alias.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LL | error::_in::impl_trait::alias()
55
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ could not resolve path `error::_in::impl_trait::alias`
66
|
77
= note: this error was originally ignored because you are running `rustdoc`
8-
= note: try running again with `rustc` and you may get a more detailed error
8+
= note: try running again with `rustc` or `cargo check` and you may get a more detailed error
99

1010
error: aborting due to previous error
1111

0 commit comments

Comments
 (0)