Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const_prop
/
const-prop-ice3.rs
blob: 34b662922ae6e183d2f68cc73e47a3997c4f707f [
file
] [
log
] [
blame
] [
edit
]
//@ 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
;
}