]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/traits-issue-22655.rs
18c7cfb0850ceace40ecdb59a275d76c3e9be5eb
[rust.git] / src / test / run-pass / traits-issue-22655.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 // Regression test for issue #22655: This test should not lead to
12 // infinite recursion.
13
14 unsafe impl<T: Send + ?Sized> Send for Unique<T> { }
15
16 pub struct Unique<T:?Sized> {
17     pointer: *const T,
18 }
19
20 pub struct Node<V> {
21     vals: V,
22     edges: Unique<Node<V>>,
23 }
24
25 fn is_send<T: Send>() {}
26
27 fn main() {
28     is_send::<Node<&'static ()>>();
29 }