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 again requires computing whether impls specialize one another, completing the cycle
9
+
note: cycle used when building specialization graph of trait `Foo`
10
+
--> $DIR/specialization-broken.rs:8:1
15
11
|
16
-
LL | fn bar(&self) -> impl Sized;
17
-
| ^^^^^^^^^^
18
-
= note: expected signature `fn(&U) -> impl Sized`
19
-
found signature `fn(&U) -> U`
12
+
LL | trait Foo {
13
+
| ^^^^^^^^^
14
+
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
20
15
21
-
error: method with return-position `impl Trait` in trait cannot be specialized
22
-
--> $DIR/specialization-broken.rs:16:5
23
-
|
24
-
LL | fn bar(&self) -> U {
25
-
| ^^^^^^^^^^^^^^^^^^
26
-
|
27
-
= note: specialization behaves in inconsistent and surprising ways with `#![feature(return_position_impl_trait_in_trait)]`, and for now is disallowed
28
-
29
-
error: aborting due to 2 previous errors
16
+
error: aborting due to previous error
30
17
31
-
For more information about this error, try `rustc --explain E0053`.
18
+
For more information about this error, try `rustc --explain E0391`.
= note: ...which immediately requires computing whether impls specialize one another again
18
+
note: cycle used when building specialization graph of trait `Baz`
19
+
--> $DIR/specialization-no-default.rs:42:1
63
20
|
64
-
= note: to specialize, `redundant` in the parent `impl` must be marked `default`
21
+
LL | trait Baz {
22
+
| ^^^^^^^^^
23
+
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
65
24
66
-
error: aborting due to 5 previous errors; 1 warning emitted
25
+
error: aborting due to previous error; 1 warning emitted
67
26
68
-
For more information about this error, try `rustc --explain E0520`.
27
+
For more information about this error, try `rustc --explain E0391`.
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
19
25
20
26
error: aborting due to previous error; 1 warning emitted
21
27
22
-
For more information about this error, try `rustc --explain E0046`.
28
+
For more information about this error, try `rustc --explain E0391`.
= note: ...which again requires computing whether impls specialize one another, completing the cycle
19
+
note: cycle used when building specialization graph of trait `FromA`
20
+
--> $DIR/issue-39448.rs:20:1
26
21
|
27
-
LL | impl<T, U> ToA<U> for T
28
-
| ^^^^^^ ^
29
-
LL | where
30
-
LL | U: FromA<T>,
31
-
| -------- unsatisfied trait bound introduced here
22
+
LL | trait FromA<T> {
23
+
| ^^^^^^^^^^^^^^
24
+
= note: see https://rustc-dev-guide.rust-lang.org/overview.html#queries and https://rustc-dev-guide.rust-lang.org/query.html for more information
32
25
33
26
error: aborting due to previous error; 1 warning emitted
34
27
35
-
For more information about this error, try `rustc --explain E0275`.
28
+
For more information about this error, try `rustc --explain E0391`.
0 commit comments