1
1
error[E0223]: ambiguous associated type
2
- --> $DIR/issue-109195 .rs:12 :5
2
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:13 :5
3
3
|
4
4
LL | String::from::utf8;
5
5
| ^^^^^^^^^^^^
@@ -10,7 +10,7 @@ LL | String::from_utf8;
10
10
| ~~~~~~~~~
11
11
12
12
error[E0223]: ambiguous associated type
13
- --> $DIR/issue-109195 .rs:15 :5
13
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:16 :5
14
14
|
15
15
LL | String::from::utf8();
16
16
| ^^^^^^^^^^^^
@@ -21,7 +21,7 @@ LL | String::from_utf8();
21
21
| ~~~~~~~~~
22
22
23
23
error[E0223]: ambiguous associated type
24
- --> $DIR/issue-109195 .rs:18 :5
24
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:19 :5
25
25
|
26
26
LL | String::from::utf16();
27
27
| ^^^^^^^^^^^^
@@ -32,7 +32,7 @@ LL | String::from_utf16();
32
32
| ~~~~~~~~~~
33
33
34
34
error[E0223]: ambiguous associated type
35
- --> $DIR/issue-109195 .rs:21 :5
35
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:22 :5
36
36
|
37
37
LL | String::from::method_that_doesnt_exist();
38
38
| ^^^^^^^^^^^^
@@ -43,7 +43,7 @@ LL | <String as Example>::from::method_that_doesnt_exist();
43
43
| ~~~~~~~~~~~~~~~~~~~~~~~~~
44
44
45
45
error[E0223]: ambiguous associated type
46
- --> $DIR/issue-109195 .rs:24 :5
46
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:25 :5
47
47
|
48
48
LL | str::into::string();
49
49
| ^^^^^^^^^
@@ -54,7 +54,7 @@ LL | str::into_string();
54
54
| ~~~~~~~~~~~
55
55
56
56
error[E0223]: ambiguous associated type
57
- --> $DIR/issue-109195 .rs:27 :5
57
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:28 :5
58
58
|
59
59
LL | str::char::indices();
60
60
| ^^^^^^^^^
@@ -65,7 +65,7 @@ LL | str::char_indices();
65
65
| ~~~~~~~~~~~~
66
66
67
67
error[E0223]: ambiguous associated type
68
- --> $DIR/issue-109195 .rs:30 :5
68
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:31 :5
69
69
|
70
70
LL | Foo::bar::baz;
71
71
| ^^^^^^^^
@@ -76,7 +76,7 @@ LL | Foo::bar_baz;
76
76
| ~~~~~~~
77
77
78
78
error[E0223]: ambiguous associated type
79
- --> $DIR/issue-109195 .rs:33 :5
79
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:34 :5
80
80
|
81
81
LL | Foo::bar::quux;
82
82
| ^^^^^^^^
@@ -87,7 +87,7 @@ LL | Foo::bar_quux;
87
87
| ~~~~~~~~
88
88
89
89
error[E0223]: ambiguous associated type
90
- --> $DIR/issue-109195 .rs:36 :5
90
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:37 :5
91
91
|
92
92
LL | Foo::bar::fizz;
93
93
| ^^^^^^^^
@@ -98,7 +98,7 @@ LL | <Foo as Example>::bar::fizz;
98
98
| ~~~~~~~~~~~~~~~~~~~~~
99
99
100
100
error[E0223]: ambiguous associated type
101
- --> $DIR/issue-109195 .rs:39 :5
101
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:40 :5
102
102
|
103
103
LL | i32::wrapping::add;
104
104
| ^^^^^^^^^^^^^
@@ -109,7 +109,7 @@ LL | i32::wrapping_add;
109
109
| ~~~~~~~~~~~~
110
110
111
111
error[E0223]: ambiguous associated type
112
- --> $DIR/issue-109195 .rs:42 :5
112
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:43 :5
113
113
|
114
114
LL | i32::wrapping::method_that_doesnt_exist;
115
115
| ^^^^^^^^^^^^^
@@ -120,7 +120,7 @@ LL | <i32 as Example>::wrapping::method_that_doesnt_exist;
120
120
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
121
121
122
122
error[E0223]: ambiguous associated type
123
- --> $DIR/issue-109195 .rs:47 :5
123
+ --> $DIR/ambiguous-assoc-type-path-suggest-similar-item .rs:48 :5
124
124
|
125
125
LL | <dyn std::any::Any>::downcast::mut_unchecked;
126
126
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments