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.
|
|
|
|
|
|
|
|
trait Foo {
|
|
|
|
}
|
|
|
|
|
2013-06-20 18:23:25 -04:00
|
|
|
fn a(_x: ~Foo:) {
|
2013-06-19 13:55:30 -04:00
|
|
|
}
|
|
|
|
|
2013-06-25 18:25:27 -07:00
|
|
|
fn b(_x: ~Foo:Send) {
|
2013-06-19 13:55:30 -04:00
|
|
|
}
|
|
|
|
|
2014-03-22 00:44:26 +01:00
|
|
|
fn c(x: ~Foo:Share+Send) {
|
2013-06-19 13:55:30 -04:00
|
|
|
a(x);
|
|
|
|
}
|
|
|
|
|
2013-07-10 14:43:25 -07:00
|
|
|
fn d(x: ~Foo:Send) {
|
2013-06-19 13:55:30 -04:00
|
|
|
b(x);
|
|
|
|
}
|
|
|
|
|
2013-06-20 18:23:25 -04:00
|
|
|
fn e(x: ~Foo) { // sugar for ~Foo:Owned
|
2014-03-08 18:21:49 -08:00
|
|
|
a(x);
|
2013-06-20 18:23:25 -04:00
|
|
|
}
|
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() { }
|