You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
note: ...which requires computing type of `cycle2::{opaque#0}`...
50
+
--> $DIR/auto-trait-leak.rs:20:16
51
+
|
52
+
LL | fn cycle2() -> impl Clone {
53
+
| ^^^^^^^^^^
54
+
note: ...which requires type-checking `cycle2`...
55
+
--> $DIR/auto-trait-leak.rs:20:1
56
+
|
57
+
LL | fn cycle2() -> impl Clone {
58
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^
59
+
= note: ...which again requires computing type of `cycle1::{opaque#0}`, completing the cycle
60
+
note: cycle used when checking item types in top-level module
61
+
--> $DIR/auto-trait-leak.rs:1:1
62
+
|
63
+
LL | / use std::cell::Cell;
64
+
LL | | use std::rc::Rc;
65
+
LL | |
66
+
LL | | fn send<T: Send>(_: T) {}
67
+
... |
68
+
LL | | Rc::new(String::from("foo"))
69
+
LL | | }
70
+
| |_^
71
+
72
+
error: cannot check whether the hidden type of opaque type satisfies auto traits
73
+
--> $DIR/auto-trait-leak.rs:21:10
74
+
|
75
+
LL | send(cycle1().clone());
76
+
| ---- ^^^^^^^^^^^^^^^^
77
+
| |
78
+
| required by a bound introduced by this call
79
+
|
80
+
note: opaque type is declared here
81
+
--> $DIR/auto-trait-leak.rs:11:16
82
+
|
83
+
LL | fn cycle1() -> impl Clone {
84
+
| ^^^^^^^^^^
85
+
note: this item depends on auto traits of the hidden type, but may also be registering the hidden type. This is not supported right now. You can try moving the opaque type and the item that actually registers a hidden type into a new submodule
86
+
--> $DIR/auto-trait-leak.rs:20:4
87
+
|
88
+
LL | fn cycle2() -> impl Clone {
89
+
| ^^^^^^
90
+
note: required by a bound in `send`
91
+
--> $DIR/auto-trait-leak.rs:4:12
92
+
|
93
+
LL | fn send<T: Send>(_: T) {}
94
+
| ^^^^ required by this bound in `send`
95
+
96
+
error: cannot check whether the hidden type of opaque type satisfies auto traits
97
+
--> $DIR/auto-trait-leak.rs:14:10
98
+
|
99
+
LL | send(cycle2().clone());
100
+
| ---- ^^^^^^^^^^^^^^^^
101
+
| |
102
+
| required by a bound introduced by this call
103
+
|
104
+
note: opaque type is declared here
105
+
--> $DIR/auto-trait-leak.rs:20:16
106
+
|
107
+
LL | fn cycle2() -> impl Clone {
108
+
| ^^^^^^^^^^
109
+
note: this item depends on auto traits of the hidden type, but may also be registering the hidden type. This is not supported right now. You can try moving the opaque type and the item that actually registers a hidden type into a new submodule
110
+
--> $DIR/auto-trait-leak.rs:11:4
111
+
|
112
+
LL | fn cycle1() -> impl Clone {
113
+
| ^^^^^^
114
+
note: required by a bound in `send`
115
+
--> $DIR/auto-trait-leak.rs:4:12
116
+
|
117
+
LL | fn send<T: Send>(_: T) {}
118
+
| ^^^^ required by this bound in `send`
119
+
120
+
error: aborting due to 4 previous errors
38
121
39
122
For more information about this error, try `rustc --explain E0391`.
Copy file name to clipboardexpand all lines: tests/ui/impl-trait/issue-103181-2.stderr
+56-1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,61 @@ error[E0425]: cannot find value `ident_error` in this scope
4
4
LL | ident_error;
5
5
| ^^^^^^^^^^^ not found in this scope
6
6
7
-
error: aborting due to previous error
7
+
error: cannot check whether the hidden type of opaque type satisfies auto traits
8
+
--> $DIR/issue-103181-2.rs:26:15
9
+
|
10
+
LL | normalize(broken_fut(), ());
11
+
| --------- ^^^^^^^^^^^^
12
+
| |
13
+
| required by a bound introduced by this call
14
+
|
15
+
note: opaque type is declared here
16
+
--> $DIR/issue-103181-2.rs:11:23
17
+
|
18
+
LL | async fn broken_fut() {
19
+
| ^
20
+
note: this item depends on auto traits of the hidden type, but may also be registering the hidden type. This is not supported right now. You can try moving the opaque type and the item that actually registers a hidden type into a new submodule
21
+
--> $DIR/issue-103181-2.rs:20:10
22
+
|
23
+
LL | async fn iceice<A, B>()
24
+
| ^^^^^^
25
+
note: required for `impl Future<Output = ()>` to implement `SendFuture`
| ^^^^^^^^^^ required by this bound in `normalize`
37
+
38
+
error: cannot check whether the hidden type of opaque type satisfies auto traits
39
+
--> $DIR/issue-103181-2.rs:26:5
40
+
|
41
+
LL | normalize(broken_fut(), ());
42
+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
43
+
|
44
+
note: opaque type is declared here
45
+
--> $DIR/issue-103181-2.rs:11:23
46
+
|
47
+
LL | async fn broken_fut() {
48
+
| ^
49
+
note: this item depends on auto traits of the hidden type, but may also be registering the hidden type. This is not supported right now. You can try moving the opaque type and the item that actually registers a hidden type into a new submodule
50
+
--> $DIR/issue-103181-2.rs:20:10
51
+
|
52
+
LL | async fn iceice<A, B>()
53
+
| ^^^^^^
54
+
note: required for `impl Future<Output = ()>` to implement `SendFuture`
55
+
--> $DIR/issue-103181-2.rs:7:17
56
+
|
57
+
LL | impl<Fut: Send> SendFuture for Fut {
58
+
| ---- ^^^^^^^^^^ ^^^
59
+
| |
60
+
| unsatisfied trait bound introduced here
61
+
62
+
error: aborting due to 3 previous errors
8
63
9
64
For more information about this error, try `rustc --explain E0425`.
0 commit comments