rust/tests/ui/issues/issue-33387.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
610 B
Rust
Raw Normal View History

// run-pass
#![feature(rustc_attrs)]
use std::sync::Arc;
trait Foo {
fn get(&self) -> [u8; 2];
}
impl Foo for [u8; 2] {
fn get(&self) -> [u8; 2] {
*self
}
}
struct Bar<T: ?Sized>(T);
2019-05-28 18:47:21 +00:00
fn unsize_fat_ptr<'a>(x: &'a Bar<dyn Foo + Send + 'a>) -> &'a Bar<dyn Foo + 'a> {
x
}
2019-05-28 18:47:21 +00:00
fn unsize_nested_fat_ptr(x: Arc<dyn Foo + Send>) -> Arc<dyn Foo> {
x
}
fn main() {
2019-05-28 18:47:21 +00:00
let x: Box<Bar<dyn Foo + Send>> = Box::new(Bar([1,2]));
assert_eq!(unsize_fat_ptr(&*x).0.get(), [1, 2]);
2019-05-28 18:47:21 +00:00
let x: Arc<dyn Foo + Send> = Arc::new([3, 4]);
assert_eq!(unsize_nested_fat_ptr(x).get(), [3, 4]);
}