diff options
| author | bors <bors@rust-lang.org> | 2013-12-02 12:21:32 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-12-02 12:21:32 -0800 |
| commit | fc4540d23ebec95a09309f042b7992b0926f6fe1 (patch) | |
| tree | 067ada34b0200255c0ccb54b6589f91121f9d0f9 | |
| parent | 61443dc1f5089df637edba83587b9f3020063266 (diff) | |
| parent | e41c331b2e7bf75e3967ba02f30088ac43bb1dec (diff) | |
| download | rust-fc4540d23ebec95a09309f042b7992b0926f6fe1.tar.gz rust-fc4540d23ebec95a09309f042b7992b0926f6fe1.zip | |
auto merge of #10728 : sanxiyn/rust/proc, r=cmr
Fix #10718.
| -rw-r--r-- | src/librustc/middle/typeck/check/mod.rs | 15 | ||||
| -rw-r--r-- | src/test/run-pass/issue-10718.rs | 18 |
2 files changed, 31 insertions, 2 deletions
diff --git a/src/librustc/middle/typeck/check/mod.rs b/src/librustc/middle/typeck/check/mod.rs index 5340ea2f802..0b6806f7598 100644 --- a/src/librustc/middle/typeck/check/mod.rs +++ b/src/librustc/middle/typeck/check/mod.rs @@ -2248,8 +2248,19 @@ pub fn check_expr_with_unifier(fcx: @mut FnCtxt, } _ => { // Not an error! Means we're inferring the closure type - (None, ast::impure_fn, ast::BorrowedSigil, - ast::Many, ty::EmptyBuiltinBounds()) + let mut sigil = ast::BorrowedSigil; + let mut onceness = ast::Many; + let mut bounds = ty::EmptyBuiltinBounds(); + match expr.node { + ast::ExprProc(..) => { + sigil = ast::OwnedSigil; + onceness = ast::Once; + bounds.add(ty::BoundSend); + } + _ => () + } + (None, ast::impure_fn, sigil, + onceness, bounds) } } }; diff --git a/src/test/run-pass/issue-10718.rs b/src/test/run-pass/issue-10718.rs new file mode 100644 index 00000000000..34804eda287 --- /dev/null +++ b/src/test/run-pass/issue-10718.rs @@ -0,0 +1,18 @@ +// Copyright 2013 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. + +fn f(p: proc()) { + p(); +} + +pub fn main() { + let p = proc() (); + f(p); +} |
