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
Auto merge of #24056 - nikomatsakis:issue-23853-crates-io, r=aturon
If we find a blanket impl for `Trait` but we're matching on an object `Trait`, prefer the object (I think we could perhaps go either way, but this seems safer). Also give a nice error for attempts to manually `impl Trait for Trait`, since they will be ineffectual.
This fixes the problems around ambiguity ICEs relating to `Any` and `MarkerTrait` that were cropping up all over the place. There may still be similar ICEs reported in #21756 that this PR does not address.
Fixes#24015.
Fixes#24051.
Fixes#24037.
Fixes#23853.
Fixes#21942.
cc #21756.
cc @alexcrichton (this fixes crates.io)
r? @aturon
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
// Test that we give suitable error messages when the user attempts to
12
+
// impl a trait `Trait` for its own object type.
13
+
14
+
traitFoo{fndummy(&self){}}
15
+
traitBar:Foo{}
16
+
traitBaz:Bar{}
17
+
18
+
// Subtraits of Baz are not legal:
19
+
implFooforBaz{}//~ ERROR E0371
20
+
implBarforBaz{}//~ ERROR E0371
21
+
implBazforBaz{}//~ ERROR E0371
22
+
23
+
// But other random traits are:
24
+
traitOther{}
25
+
implOtherforBaz{}// OK, Bar not a subtrait of Baz
26
+
27
+
// If the trait is not object-safe, we give a more tailored message
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
// Test that we are able to compile the case where both a blanket impl
12
+
// and the object type itself supply the required trait obligation.
13
+
// In this case, the blanket impl for `Foo` applies to any type,
14
+
// including `Bar`, but the object type `Bar` also implicitly supplies
0 commit comments