]> git.lizzy.rs Git - rust.git/blob - src/test/ui/phantom-oibit.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / phantom-oibit.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Ensure that OIBIT checks `T` when it encounters a `PhantomData<T>` field, instead of checking
12 // the `PhantomData<T>` type itself (which almost always implements an auto trait)
13
14 #![feature(optin_builtin_traits)]
15
16 use std::marker::{PhantomData};
17
18 unsafe auto trait Zen {}
19
20 unsafe impl<'a, T: 'a> Zen for &'a T where T: Sync {}
21
22 struct Guard<'a, T: 'a> {
23     _marker: PhantomData<&'a T>,
24 }
25
26 struct Nested<T>(T);
27
28 fn is_zen<T: Zen>(_: T) {}
29
30 fn not_sync<T>(x: Guard<T>) {
31     is_zen(x)
32     //~^ ERROR `T` cannot be shared between threads safely [E0277]
33 }
34
35 fn nested_not_sync<T>(x: Nested<Guard<T>>) {
36     is_zen(x)
37     //~^ ERROR `T` cannot be shared between threads safely [E0277]
38 }
39
40 fn main() {}