diff options
| author | bors <bors@rust-lang.org> | 2014-12-27 15:28:36 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-12-27 15:28:36 +0000 |
| commit | 0201334439393bed205c1148bed425b80aab8c22 (patch) | |
| tree | 215dfd4439a6fc10735b577f06f6e9fbf6a07e95 /src/libstd/sys/unix/stack_overflow.rs | |
| parent | 4a4c89c7a4a763c253a97ff04647f52aca6a5490 (diff) | |
| parent | 5b0c8acd69ba3e9e8bc84161f89f716b01e7c523 (diff) | |
| download | rust-0201334439393bed205c1148bed425b80aab8c22.tar.gz rust-0201334439393bed205c1148bed425b80aab8c22.zip | |
auto merge of #20244 : japaric/rust/bc-no-move, r=nikomatsakis
closes #19141
closes #20193
closes #20228
---
Currently whenever we encounter `let f = || {/* */}`, we *always* type check the RHS as a *boxed* closure. This is wrong when the RHS is `move || {/* */}` (because boxed closures can't capture by value) and generates all sort of badness during trans (see issues above). What we *should* do is always type check `move || {/* */}` as an *unboxed* closure, but ~~I *think* (haven't tried)~~ (2) this is not feasible right now because we have a limited form of kind (`Fn` vs `FnMut` vs `FnOnce`) inference that only works when there is an expected type (1).
In this PR, I've chosen to generate a type error whenever `let f = move || {/* */}` is encountered. The error asks the user to annotate the kind of the unboxed closure (e.g. `move |:| {/* */}`). Once annotated, the compiler will type check the RHS as an unboxed closure which is what the user wants.
r? @nikomatsakis
(1) AIUI it only triggers in this scenario:
``` rust
fn is_uc<F>(_: F) where F: FnOnce() {}
fn main() {
is_uc(|| {}); // type checked as unboxed closure with kind `FnOnce`
}
```
(2) I checked, and it's not possible because `check_unboxed_closure` expects a `kind` argument, but we can't supply that argument in this case (i.e. `let f = || {}`, what's the kind?). We could force the `FnOnce` kind in that case, but that's ad hoc. We should try to infer the kind depending on how the closure is used afterwards, but there is no inference mechanism to do that (at least, not right now).
Diffstat (limited to 'src/libstd/sys/unix/stack_overflow.rs')
0 files changed, 0 insertions, 0 deletions
