Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
coercion
/
coerce-reborrow-imm-ptr-arg.rs
blob: 139c1d18d2b1833e7eea3a08167126f7e852ba32 [
file
] [
log
] [
blame
]
//@ 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
()
{}