Skip to content

Commit b370f0e

Browse files
Rollup merge of rust-lang#51276 - Havvy:dyn-trait-send-send, r=nikomatsakis
Dedup auto traits in trait objects. Fixes rust-lang#47010 Note that the test file `run-pass/trait-object-auto-dedup.rs` passes before and after this change. It's the `ui` test that changed from compiling to not compiling. Which does make this a breaking change, but I cannot imagine anybody actually being broken by it.
2 parents 71865fb + eccd2ed commit b370f0e

File tree

4 files changed

+101
-2
lines changed

4 files changed

+101
-2
lines changed

src/librustc_typeck/astconv.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ use util::common::ErrorReported;
3030
use util::nodemap::{FxHashSet, FxHashMap};
3131
use errors::FatalError;
3232

33+
// use std::cmp::Ordering;
3334
use std::iter;
3435
use syntax::ast;
3536
use syntax::feature_gate::{GateIssue, emit_feature_err};
@@ -646,7 +647,7 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
646647
&mut vec![]);
647648
}
648649

649-
let (auto_traits, trait_bounds) = split_auto_traits(tcx, &trait_bounds[1..]);
650+
let (mut auto_traits, trait_bounds) = split_auto_traits(tcx, &trait_bounds[1..]);
650651

651652
if !trait_bounds.is_empty() {
652653
let b = &trait_bounds[0];
@@ -707,6 +708,10 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
707708
.emit();
708709
}
709710

711+
// Dedup auto traits so that `dyn Trait + Send + Send` is the same as `dyn Trait + Send`.
712+
auto_traits.sort();
713+
auto_traits.dedup();
714+
710715
// skip_binder is okay, because the predicates are re-bound.
711716
let mut v =
712717
iter::once(ty::ExistentialPredicate::Trait(*existential_principal.skip_binder()))
@@ -1319,7 +1324,7 @@ impl<'o, 'gcx: 'tcx, 'tcx> AstConv<'gcx, 'tcx>+'o {
13191324
}
13201325
}
13211326

1322-
/// Divides a list of general trait bounds into two groups: builtin bounds (Sync/Send) and the
1327+
/// Divides a list of general trait bounds into two groups: auto traits (e.g. Sync and Send) and the
13231328
/// remaining general trait bounds.
13241329
fn split_auto_traits<'a, 'b, 'gcx, 'tcx>(tcx: TyCtxt<'a, 'gcx, 'tcx>,
13251330
trait_bounds: &'b [hir::PolyTraitRef])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// 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 duplicate auto trait bounds in trait objects don't create new types.
12+
#[allow(unused_assignments)]
13+
14+
use std::marker::Send as SendAlias;
15+
16+
// A dummy trait for the non-auto trait.
17+
trait Trait {}
18+
19+
// A dummy struct to implement Trait, Send, and .
20+
struct Struct;
21+
22+
impl Trait for Struct {}
23+
24+
// These three functions should be equivalent.
25+
fn takes_dyn_trait_send(_: Box<dyn Trait + Send>) {}
26+
fn takes_dyn_trait_send_send(_: Box<dyn Trait + Send + Send>) {}
27+
fn takes_dyn_trait_send_sendalias(_: Box<dyn Trait + Send + SendAlias>) {}
28+
29+
impl dyn Trait + Send + Send {
30+
fn do_nothing(&self) {}
31+
}
32+
33+
fn main() {
34+
// 1. Moving into a variable with more Sends and back.
35+
let mut dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
36+
let dyn_trait_send_send: Box<dyn Trait + Send + Send> = dyn_trait_send;
37+
dyn_trait_send = dyn_trait_send_send;
38+
39+
// 2. Calling methods with different number of Sends.
40+
let dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
41+
takes_dyn_trait_send_send(dyn_trait_send);
42+
43+
let dyn_trait_send_send = Box::new(Struct) as Box<dyn Trait + Send + Send>;
44+
takes_dyn_trait_send(dyn_trait_send_send);
45+
46+
// 3. Aliases to the trait are transparent.
47+
let dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
48+
takes_dyn_trait_send_sendalias(dyn_trait_send);
49+
50+
// 4. Calling an impl that duplicates an auto trait.
51+
let dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
52+
dyn_trait_send.do_nothing();
53+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// 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+
// Checks to make sure that `dyn Trait + Send` and `dyn Trait + Send + Send` are the same type.
12+
// Issue: #47010
13+
14+
struct Struct;
15+
impl Trait for Struct {}
16+
trait Trait {}
17+
18+
type Send1 = Trait + Send;
19+
type Send2 = Trait + Send + Send;
20+
21+
fn main () {}
22+
23+
impl Trait + Send {
24+
fn test(&self) { println!("one"); } //~ ERROR duplicate definitions with name `test`
25+
}
26+
27+
impl Trait + Send + Send {
28+
fn test(&self) { println!("two"); }
29+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error[E0592]: duplicate definitions with name `test`
2+
--> $DIR/trait-object-auto-dedup-in-impl.rs:24:5
3+
|
4+
LL | fn test(&self) { println!("one"); } //~ ERROR duplicate definitions with name `test`
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ duplicate definitions for `test`
6+
...
7+
LL | fn test(&self) { println!("two"); }
8+
| ----------------------------------- other definition for `test`
9+
10+
error: aborting due to previous error
11+
12+
For more information about this error, try `rustc --explain E0592`.

0 commit comments

Comments
 (0)