2015-01-07 12:27:01 -06: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.
|
|
|
|
|
|
|
|
#![feature(optin_builtin_traits)]
|
|
|
|
|
2015-04-18 00:12:20 -05:00
|
|
|
trait MyTrait {}
|
2015-01-07 12:27:01 -06:00
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
struct TestType<T>(::std::marker::PhantomData<T>);
|
2015-01-13 13:21:19 -06:00
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
unsafe impl<T: MyTrait+'static> Send for TestType<T> {}
|
2015-01-13 13:21:19 -06:00
|
|
|
|
|
|
|
impl<T: MyTrait> !Send for TestType<T> {}
|
2016-03-20 06:24:08 -05:00
|
|
|
//~^ ERROR conflicting implementations of trait `std::marker::Send`
|
2015-01-07 12:27:01 -06:00
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
unsafe impl<T:'static> Send for TestType<T> {}
|
2016-04-15 20:23:50 -05:00
|
|
|
//~^ ERROR conflicting implementations of trait `std::marker::Send`
|
2015-01-13 13:21:19 -06:00
|
|
|
|
|
|
|
impl !Send for TestType<i32> {}
|
2015-01-07 12:27:01 -06:00
|
|
|
|
|
|
|
fn main() {}
|