mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
236 B
Rust
18 lines
236 B
Rust
// 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() {}
|