Skip to content

Commit 5d2512e

Browse files
committed
Auto merge of #42162 - est31:closure-to-fn-coercion, r=aturon
Stabilize non capturing closure to fn coercion Stabilisation PR for non capturing closure to fn coercion. closes #39817
2 parents 28fd1e5 + 87950b7 commit 5d2512e

File tree

8 files changed

+2
-75
lines changed

8 files changed

+2
-75
lines changed

src/doc/unstable-book/src/SUMMARY.md

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
- [cfg_target_has_atomic](language-features/cfg-target-has-atomic.md)
2626
- [cfg_target_thread_local](language-features/cfg-target-thread-local.md)
2727
- [cfg_target_vendor](language-features/cfg-target-vendor.md)
28-
- [closure_to_fn_coercion](language-features/closure-to-fn-coercion.md)
2928
- [compiler_builtins](language-features/compiler-builtins.md)
3029
- [concat_idents](language-features/concat-idents.md)
3130
- [conservative_impl_trait](language-features/conservative-impl-trait.md)

src/doc/unstable-book/src/language-features/closure-to-fn-coercion.md

-7
This file was deleted.

src/librustc_typeck/check/coercion.rs

-9
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ use rustc::ty::relate::RelateResult;
7676
use rustc::ty::subst::Subst;
7777
use errors::DiagnosticBuilder;
7878
use syntax::abi;
79-
use syntax::feature_gate;
8079
use syntax::ptr::P;
8180
use syntax_pos;
8281

@@ -614,14 +613,6 @@ impl<'f, 'gcx, 'tcx> Coerce<'f, 'gcx, 'tcx> {
614613
let node_id_a = self.tcx.hir.as_local_node_id(def_id_a).unwrap();
615614
match b.sty {
616615
ty::TyFnPtr(_) if self.tcx.with_freevars(node_id_a, |v| v.is_empty()) => {
617-
if !self.tcx.sess.features.borrow().closure_to_fn_coercion {
618-
feature_gate::emit_feature_err(&self.tcx.sess.parse_sess,
619-
"closure_to_fn_coercion",
620-
self.cause.span,
621-
feature_gate::GateIssue::Language,
622-
feature_gate::CLOSURE_TO_FN_COERCION);
623-
return self.unify_and(a, b, identity());
624-
}
625616
// We coerce the closure, which has fn type
626617
// `extern "rust-call" fn((arg0,arg1,...)) -> _`
627618
// to

src/libsyntax/feature_gate.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -321,9 +321,6 @@ declare_features! (
321321
// `extern "msp430-interrupt" fn()`
322322
(active, abi_msp430_interrupt, "1.16.0", Some(38487)),
323323

324-
// Coerces non capturing closures to function pointers
325-
(active, closure_to_fn_coercion, "1.17.0", Some(39817)),
326-
327324
// Used to identify crates that contain sanitizer runtimes
328325
// rustc internal
329326
(active, sanitizer_runtime, "1.17.0", None),
@@ -427,6 +424,8 @@ declare_features! (
427424
(accepted, loop_break_value, "1.19.0", Some(37339)),
428425
// Permits numeric fields in struct expressions and patterns.
429426
(accepted, relaxed_adts, "1.19.0", Some(35626)),
427+
// Coerces non capturing closures to function pointers
428+
(accepted, closure_to_fn_coercion, "1.19.0", Some(39817)),
430429
);
431430

432431
// If you change this, please modify src/doc/unstable-book as well. You must
@@ -1026,9 +1025,6 @@ pub const EXPLAIN_VIS_MATCHER: &'static str =
10261025
pub const EXPLAIN_PLACEMENT_IN: &'static str =
10271026
"placement-in expression syntax is experimental and subject to change.";
10281027

1029-
pub const CLOSURE_TO_FN_COERCION: &'static str =
1030-
"non-capturing closure to fn coercion is experimental";
1031-
10321028
struct PostExpansionVisitor<'a> {
10331029
context: &'a Context<'a>,
10341030
}

src/test/compile-fail/feature-gate-closure_to_fn_coercion.rs

-45
This file was deleted.

src/test/compile-fail/issue-40000.rs

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
#![feature(closure_to_fn_coercion)]
12-
1311
fn main() {
1412
let bar: fn(&mut u32) = |_| {};
1513

src/test/run-pass/closure-to-fn-coercion.rs

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// ignore-stage0: new feature, remove this when SNAP
12-
13-
#![feature(closure_to_fn_coercion)]
14-
1511
const FOO: fn(u8) -> u8 = |v: u8| { v };
1612

1713
const BAR: [fn(&mut u32); 5] = [

src/test/run-pass/closure_to_fn_coercion-expected-types.rs

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
// except according to those terms.
1010
// Ensure that we deduce expected argument types when a `fn()` type is expected (#41755)
1111

12-
#![feature(closure_to_fn_coercion)]
1312
fn foo(f: fn(Vec<u32>) -> usize) { }
1413

1514
fn main() {

0 commit comments

Comments
 (0)