mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-03 21:47:36 +00:00
15 lines
187 B
Rust
15 lines
187 B
Rust
![]() |
//@ check-pass
|
||
|
fn useful(i: usize) -> usize {
|
||
|
i
|
||
|
}
|
||
|
|
||
|
fn useful2(i: usize) -> usize {
|
||
|
i
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
for f in &[useful, useful2, |x| x] {
|
||
|
println!("{}", f(6));
|
||
|
}
|
||
|
}
|