about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2018-08-06 14:45:19 -0700
committerJosh Triplett <josh@joshtriplett.org>2018-08-06 14:45:19 -0700
commit1fd8e57c5b329e253404161bddcf29e0bfc12f0b (patch)
treed6581f8ef396f58d0082c6d6593a825df12790a3 /src
parentb2397437530eecef72a1524a7e0a4b42034fa360 (diff)
downloadrust-1fd8e57c5b329e253404161bddcf29e0bfc12f0b.tar.gz
rust-1fd8e57c5b329e253404161bddcf29e0bfc12f0b.zip
Rust 2018: Disable catch_expr, not targeted for 2018 edition
Fixes #52604
Diffstat (limited to 'src')
-rw-r--r--src/libsyntax/feature_gate.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs
index 193e560893f..5ac5064bd03 100644
--- a/src/libsyntax/feature_gate.rs
+++ b/src/libsyntax/feature_gate.rs
@@ -323,7 +323,7 @@ declare_features! (
     (active, abi_x86_interrupt, "1.17.0", Some(40180), None),
 
     // Allows the `catch {...}` expression
-    (active, catch_expr, "1.17.0", Some(31436), Some(Edition::Edition2018)),
+    (active, catch_expr, "1.17.0", Some(31436), None),
 
     // Used to preserve symbols (see llvm.used)
     (active, used, "1.18.0", Some(40289), None),