mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
40ae34194c
detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR.
11 lines
135 B
Rust
11 lines
135 B
Rust
// run-pass
|
|
#![feature(fn_traits)]
|
|
|
|
fn say(x: u32, y: u32) {
|
|
println!("{} {}", x, y);
|
|
}
|
|
|
|
fn main() {
|
|
Fn::call(&say, (1, 2));
|
|
}
|