Skip to content

Commit b86434d

Browse files
committed
bless tests
1 parent 2efc83d commit b86434d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

tests/incremental/circular-dependencies.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ fn test() {
2828
//[cfail2]~| NOTE expected `circular_dependencies::Foo`, found `Foo`
2929
//[cfail2]~| NOTE arguments to this function are incorrect
3030
//[cfail2]~| NOTE function defined here
31-
//[cfail2]~| NOTE one version of crate `circular_dependencies` used here, as a dependency of crate `circular_dependencies_aux`
32-
//[cfail2]~| NOTE one version of crate `circular_dependencies` used here, as a dependency of crate `circular_dependencies_aux`
3331

3432
consume_foo(aux::produce_foo());
3533
//[cfail2]~^ ERROR mismatched types [E0308]
3634
//[cfail2]~| NOTE expected `Foo`, found `circular_dependencies::Foo`
3735
//[cfail2]~| NOTE arguments to this function are incorrect
36+
//[cfail2]~| NOTE one version of crate `circular_dependencies` used here, as a dependency of crate `circular_dependencies_aux`
37+
//[cfail2]~| NOTE one version of crate `circular_dependencies` used here, as a dependency of crate `circular_dependencies_aux`
3838
}

tests/ui/did_you_mean/dont-suggest-doc-hidden-fields.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ fn main() {
2727
// Here we want to hide the field `hello` since it's marked
2828
// `doc(hidden)` and comes from an external crate.
2929
doc_hidden_fields::B::default().hey;
30-
//~^ ERROR no field `hey` on type `B`
30+
//~^ ERROR no field `hey` on type `doc_hidden_fields::B`
3131
//~| NOTE unknown field
3232
//~| NOTE available field is: `bye`
3333

tests/ui/did_you_mean/dont-suggest-doc-hidden-fields.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | A::default().hey;
66
|
77
= note: available fields are: `hello`, `bye`
88

9-
error[E0609]: no field `hey` on type `B`
9+
error[E0609]: no field `hey` on type `doc_hidden_fields::B`
1010
--> $DIR/dont-suggest-doc-hidden-fields.rs:29:37
1111
|
1212
LL | doc_hidden_fields::B::default().hey;

tests/ui/extern-flag/public-and-private.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error: type `S` from private dependency 'somedep' in public interface
1+
error: type `somedep::S` from private dependency 'somedep' in public interface
22
--> $DIR/public-and-private.rs:10:5
33
|
44
LL | pub field: somedep::S,

tests/ui/issues/issue-74236/main.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0308]: mismatched types
22
--> $DIR/main.rs:7:9
33
|
44
LL | let () = dep::Renamed;
5-
| ^^ ------------ this expression has type `Renamed`
5+
| ^^ ------------ this expression has type `dep::Renamed`
66
| |
77
| expected `Renamed`, found `()`
88

0 commit comments

Comments
 (0)