mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
182 B
Rust
10 lines
182 B
Rust
//@ run-pass
|
|
|
|
#![allow(dead_code)]
|
|
|
|
fn f(a: *const isize) -> *const isize { return a; }
|
|
|
|
fn g(a: *const isize) -> *const isize { let b = f(a); return b; }
|
|
|
|
pub fn main() { return; }
|