2013-06-19 13:55:30 -04:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-05 18:33:58 -08:00
|
|
|
#![feature(core)]
|
2014-05-05 18:56:44 -07:00
|
|
|
|
2015-02-12 10:29:52 -05:00
|
|
|
trait Foo : ::std::marker::MarkerTrait {
|
2013-06-19 13:55:30 -04:00
|
|
|
}
|
|
|
|
|
2014-06-11 12:14:38 -07:00
|
|
|
fn b(_x: Box<Foo+Send>) {
|
2013-06-19 13:55:30 -04:00
|
|
|
}
|
|
|
|
|
2014-08-05 16:40:04 -07:00
|
|
|
fn c(x: Box<Foo+Sync+Send>) {
|
2014-06-20 10:49:54 -07:00
|
|
|
e(x);
|
2013-06-19 13:55:30 -04:00
|
|
|
}
|
|
|
|
|
2014-06-11 12:14:38 -07:00
|
|
|
fn d(x: Box<Foo+Send>) {
|
2014-06-20 10:49:54 -07:00
|
|
|
e(x);
|
2013-06-19 13:55:30 -04:00
|
|
|
}
|
|
|
|
|
2014-06-20 10:49:54 -07:00
|
|
|
fn e(x: Box<Foo>) {
|
|
|
|
e(x);
|
2013-06-20 18:23:25 -04:00
|
|
|
}
|
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() { }
|