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
Rollup merge of rust-lang#133850 - oli-obk:push-xryukktpyooq, r=compiler-errors
Avoid `opaque type not constrained` errors in the presence of other errors
pulled out of rust-lang#128440
These errors carry no new information if the opaque type was actually used in a constraining (but erroneous) way somewhere.
Copy file name to clipboardexpand all lines: tests/ui/higher-ranked/trait-bounds/normalize-under-binder/norm-before-method-resolution-opaque-type.next.stderr
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
error[E0284]: type annotations needed: cannot satisfy `Foo == _`
= help: consider changing to `self`, `&self`, `&mut self`, `self: Box<Self>`, `self: Rc<Self>`, `self: Arc<Self>`, or `self: Pin<P>` (where P is one of the previous types except `Self`)
9
9
10
10
error: item does not constrain `Bar::{opaque#0}`, but has it in its signature
11
-
--> $DIR/arbitrary-self-opaque.rs:8:8
11
+
--> $DIR/arbitrary-self-opaque.rs:7:8
12
12
|
13
13
LL | fn foo(self: Bar) {}
14
14
| ^^^
@@ -20,14 +20,6 @@ note: this opaque type is in the signature
20
20
LL | type Bar = impl Sized;
21
21
| ^^^^^^^^^^
22
22
23
-
error: unconstrained opaque type
24
-
--> $DIR/arbitrary-self-opaque.rs:4:12
25
-
|
26
-
LL | type Bar = impl Sized;
27
-
| ^^^^^^^^^^
28
-
|
29
-
= note: `Bar` must be used in combination with a concrete type within the same module
30
-
31
-
error: aborting due to 3 previous errors
23
+
error: aborting due to 2 previous errors
32
24
33
25
For more information about this error, try `rustc --explain E0307`.
0 commit comments