Skip to content

Commit

Permalink
add test for #24421
Browse files Browse the repository at this point in the history
Fixes #24421.
  • Loading branch information
euclio committed Oct 12, 2018
1 parent a534216 commit 0e268d9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/test/ui/closure-expected-type/README.md

This file was deleted.

20 changes: 20 additions & 0 deletions src/test/ui/closure-expected-type/issue-24421.rs
@@ -0,0 +1,20 @@
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// compile-pass

fn test<F: Fn(&u64, &u64)>(f: F) {}

fn main() {
test(|x, y | {});
test(|x:&u64, y:&u64| {});
test(|x:&u64, y | {});
test(|x, y:&u64| {});
}

0 comments on commit 0e268d9

Please sign in to comment.