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.
|
|
|
|
|
2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(unconditional_recursion)]
|
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-04-17 22:12:20 -07:00
|
|
|
trait Foo {
|
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() { }
|