2014-07-22 06:46:36 -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.
|
|
|
|
|
|
|
|
// Test that borrowed pointers are not sendable unless 'static.
|
|
|
|
|
|
|
|
fn assert_send<T:Send>() { }
|
|
|
|
|
|
|
|
// lifetime pointers with 'static lifetime are ok
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test01() { assert_send::<&'static isize>(); }
|
2014-07-22 06:46:36 -05:00
|
|
|
fn test02() { assert_send::<&'static str>(); }
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test03() { assert_send::<&'static [isize]>(); }
|
2014-07-22 06:46:36 -05:00
|
|
|
|
|
|
|
// whether or not they are mutable
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test10() { assert_send::<&'static mut isize>(); }
|
2014-07-22 06:46:36 -05:00
|
|
|
|
|
|
|
// otherwise lifetime pointers are not ok
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test20<'a>(_: &'a isize) {
|
|
|
|
assert_send::<&'a isize>(); //~ ERROR declared lifetime bound not satisfied
|
2014-07-22 06:46:36 -05:00
|
|
|
}
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test21<'a>(_: &'a isize) {
|
2014-12-07 10:10:48 -06:00
|
|
|
assert_send::<&'a str>(); //~ ERROR declared lifetime bound not satisfied
|
2014-07-22 06:46:36 -05:00
|
|
|
}
|
2015-01-08 04:54:35 -06:00
|
|
|
fn test22<'a>(_: &'a isize) {
|
|
|
|
assert_send::<&'a [isize]>(); //~ ERROR declared lifetime bound not satisfied
|
2014-07-22 06:46:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|