]> git.lizzy.rs Git - rust.git/blob - src/test/mir-opt/issue-41697.rs
Render const pointers in MIR more compactly
[rust.git] / src / test / mir-opt / issue-41697.rs
1 // Regression test for #41697. Using dump-mir was triggering
2 // artificial cycles: during type-checking, we had to get the MIR for
3 // the constant expressions in `[u8; 2]`, which in turn would trigger
4 // an attempt to get the def-path, which in turn would request the
5 // types of the impl, which would trigger a cycle. We suppressed this
6 // cycle now by forcing mir-dump to avoid asking for types of an impl.
7
8 #![feature(rustc_attrs)]
9
10 use std::sync::Arc;
11
12 trait Foo {
13     fn get(&self) -> [u8; 2];
14 }
15
16 impl Foo for [u8; 2] {
17     fn get(&self) -> [u8; 2] {
18         *self
19     }
20 }
21
22 struct Bar<T: ?Sized>(T);
23
24 fn unsize_fat_ptr<'a>(x: &'a Bar<Foo + Send + 'a>) -> &'a Bar<Foo + 'a> {
25     x
26 }
27
28 fn unsize_nested_fat_ptr(x: Arc<Foo + Send>) -> Arc<Foo> {
29     x
30 }
31
32 fn main() {
33     let x: Box<Bar<Foo + Send>> = Box::new(Bar([1,2]));
34     assert_eq!(unsize_fat_ptr(&*x).0.get(), [1, 2]);
35
36     let x: Arc<Foo + Send> = Arc::new([3, 4]);
37     assert_eq!(unsize_nested_fat_ptr(x).get(), [3, 4]);
38 }