rust/tests/ui/unnamed_argument_mode.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
208 B
Rust
Raw Normal View History

//@ run-pass
//@ pretty-expanded FIXME #23616
fn good(_a: &isize) {
}
// unnamed argument &isize is now parse x: &isize
fn called<F>(_f: F) where F: FnOnce(&isize) {
}
pub fn main() {
2013-08-17 15:37:42 +00:00
called(good);
}