]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-33387.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / test / run-pass / issue-33387.rs
1 // Copyright 2016 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 #![feature(rustc_attrs)]
12
13 use std::sync::Arc;
14
15 trait Foo {
16     fn get(&self) -> [u8; 2];
17 }
18
19 impl Foo for [u8; 2] {
20     fn get(&self) -> [u8; 2] {
21         *self
22     }
23 }
24
25 struct Bar<T: ?Sized>(T);
26
27 fn unsize_fat_ptr<'a>(x: &'a Bar<Foo + Send + 'a>) -> &'a Bar<Foo + 'a> {
28     x
29 }
30
31 fn unsize_nested_fat_ptr(x: Arc<Foo + Send>) -> Arc<Foo> {
32     x
33 }
34
35 fn main() {
36     let x: Box<Bar<Foo + Send>> = Box::new(Bar([1,2]));
37     assert_eq!(unsize_fat_ptr(&*x).0.get(), [1, 2]);
38
39     let x: Arc<Foo + Send> = Arc::new([3, 4]);
40     assert_eq!(unsize_nested_fat_ptr(x).get(), [3, 4]);
41 }