2018-06-01 10:52:07 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-06-01 10:52:07 -05:00
|
|
|
// Test that duplicate auto trait bounds in trait objects don't create new types.
|
|
|
|
#[allow(unused_assignments)]
|
|
|
|
|
|
|
|
use std::marker::Send as SendAlias;
|
|
|
|
|
|
|
|
// A dummy trait for the non-auto trait.
|
|
|
|
trait Trait {}
|
|
|
|
|
|
|
|
// A dummy struct to implement Trait, Send, and .
|
|
|
|
struct Struct;
|
|
|
|
|
|
|
|
impl Trait for Struct {}
|
|
|
|
|
|
|
|
// These three functions should be equivalent.
|
|
|
|
fn takes_dyn_trait_send(_: Box<dyn Trait + Send>) {}
|
|
|
|
fn takes_dyn_trait_send_send(_: Box<dyn Trait + Send + Send>) {}
|
|
|
|
fn takes_dyn_trait_send_sendalias(_: Box<dyn Trait + Send + SendAlias>) {}
|
|
|
|
|
|
|
|
impl dyn Trait + Send + Send {
|
|
|
|
fn do_nothing(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// 1. Moving into a variable with more Sends and back.
|
|
|
|
let mut dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
|
|
|
|
let dyn_trait_send_send: Box<dyn Trait + Send + Send> = dyn_trait_send;
|
|
|
|
dyn_trait_send = dyn_trait_send_send;
|
|
|
|
|
|
|
|
// 2. Calling methods with different number of Sends.
|
|
|
|
let dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
|
|
|
|
takes_dyn_trait_send_send(dyn_trait_send);
|
|
|
|
|
|
|
|
let dyn_trait_send_send = Box::new(Struct) as Box<dyn Trait + Send + Send>;
|
|
|
|
takes_dyn_trait_send(dyn_trait_send_send);
|
|
|
|
|
|
|
|
// 3. Aliases to the trait are transparent.
|
|
|
|
let dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
|
|
|
|
takes_dyn_trait_send_sendalias(dyn_trait_send);
|
|
|
|
|
|
|
|
// 4. Calling an impl that duplicates an auto trait.
|
|
|
|
let dyn_trait_send = Box::new(Struct) as Box<dyn Trait + Send>;
|
|
|
|
dyn_trait_send.do_nothing();
|
|
|
|
}
|