]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/issue-41697.rs
Rollup merge of #44287 - Eh2406:master, r=aturon
[rust.git] / src / test / mir-opt / issue-41697.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 // Regression test for #41697. Using dump-mir was triggering
12 // artificial cycles: during type-checking, we had to get the MIR for
13 // the constant expressions in `[u8; 2]`, which in turn would trigger
14 // an attempt to get the item-path, which in turn would request the
15 // types of the impl, which would trigger a cycle. We supressed this
16 // cycle now by forcing mir-dump to avoid asking for types of an impl.
17
18 #![feature(rustc_attrs)]
19
20 use std::sync::Arc;
21
22 trait Foo {
23     fn get(&self) -> [u8; 2];
24 }
25
26 impl Foo for [u8; 2] {
27     fn get(&self) -> [u8; 2] {
28         *self
29     }
30 }
31
32 struct Bar<T: ?Sized>(T);
33
34 fn unsize_fat_ptr<'a>(x: &'a Bar<Foo + Send + 'a>) -> &'a Bar<Foo + 'a> {
35     x
36 }
37
38 fn unsize_nested_fat_ptr(x: Arc<Foo + Send>) -> Arc<Foo> {
39     x
40 }
41
42 fn main() {
43     let x: Box<Bar<Foo + Send>> = Box::new(Bar([1,2]));
44     assert_eq!(unsize_fat_ptr(&*x).0.get(), [1, 2]);
45
46     let x: Arc<Foo + Send> = Arc::new([3, 4]);
47     assert_eq!(unsize_nested_fat_ptr(x).get(), [3, 4]);
48 }