Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
ptr_ops
/
issue-80309.rs
blob: c13ce3c9cd2c1d2f21e677cbf412efd03e246ccf [
file
] [
log
] [
blame
]
// run-pass
// compile-flags: -O
// Regression test for issue #80309
pub
unsafe
fn
foo
(
x
:
*
const
i8
)
->
i8
{
*
x
.
wrapping_sub
(
x
as
_
).
wrapping_add
(
x
as
_
)
}
fn
main
()
{
let
x
=
42
;
println
!(
"{}"
,
unsafe
{
foo
(&
x
)
});
}