diff options
Diffstat (limited to 'tests/ui/consts/const-prop-ice3.rs')
-rw-r--r-- | tests/ui/consts/const-prop-ice3.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/ui/consts/const-prop-ice3.rs b/tests/ui/consts/const-prop-ice3.rs deleted file mode 100644 index 8ab011661..000000000 --- a/tests/ui/consts/const-prop-ice3.rs +++ /dev/null @@ -1,7 +0,0 @@ -// run-pass (ensure that const-prop is run) - -struct A<T: ?Sized>(T); - -fn main() { - let _x = &(&A([2, 3]) as &A<[i32]>).0 as *const [i32] as *const i32; -} |