Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
coercion
/
coerce-reborrow-imm-ptr-arg.rs
blob: 139c1d18d2b1833e7eea3a08167126f7e852ba32 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ pretty-expanded FIXME #23616
fn
negate
(
x
:
&
isize
)
->
isize
{
-*
x
}
fn
negate_mut
(
y
:
&
mut
isize
)
->
isize
{
negate
(
y
)
}
fn
negate_imm
(
y
:
&
isize
)
->
isize
{
negate
(
y
)
}
pub
fn
main
()
{}