
Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
10 lines
98 B
Rust
10 lines
98 B
Rust
//@ run-pass
|
|
|
|
fn f<F:FnOnce()>(p: F) {
|
|
p();
|
|
}
|
|
|
|
pub fn main() {
|
|
let p = || ();
|
|
f(p);
|
|
}
|