mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
433da1fc04
They pass fine.
14 lines
247 B
Rust
14 lines
247 B
Rust
fn identity(a: &u32) -> &u32 { a }
|
|
|
|
fn print_foo(f: &fn(&u32) -> &u32, x: &u32) {
|
|
print!("{}", (*f)(x));
|
|
}
|
|
|
|
fn main() {
|
|
let x = &4;
|
|
let f: fn(&u32) -> &u32 = identity;
|
|
|
|
// Didn't print 4 on optimized builds
|
|
print_foo(&f, x);
|
|
}
|