mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
18 lines
238 B
Rust
18 lines
238 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() {}
|