2014-12-23 03:57:44 -06:00
|
|
|
extern crate core;
|
|
|
|
|
2014-07-22 06:46:36 -05:00
|
|
|
fn assert_send<T:Send>() { }
|
2012-10-19 08:01:01 -05:00
|
|
|
|
2014-07-22 06:46:36 -05:00
|
|
|
fn test71<'a>() {
|
2015-01-08 04:54:35 -06:00
|
|
|
assert_send::<*mut &'a isize>();
|
2018-06-09 18:53:36 -05:00
|
|
|
//~^ ERROR `*mut &'a isize` cannot be sent between threads safely
|
2014-07-22 06:46:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|