about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2023-12-10 09:34:13 -0800
committerEric Huss <eric@huss.org>2023-12-10 13:03:28 -0800
commitf481596ee4e761182f20eaf1b67d4431cd2d5556 (patch)
treefc0ae7b828e7036216820f6426879bef446cc7b0 /compiler/rustc_error_codes/src
parent7e452c123c5acea813130a9519b34f83795cb856 (diff)
downloadrust-f481596ee4e761182f20eaf1b67d4431cd2d5556.tar.gz
rust-f481596ee4e761182f20eaf1b67d4431cd2d5556.zip
Remove edition umbrella features.
Diffstat (limited to 'compiler/rustc_error_codes/src')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0705.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0705.md b/compiler/rustc_error_codes/src/error_codes/E0705.md
index eb76d1836fc..317f3a47eff 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0705.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0705.md
@@ -1,9 +1,11 @@
+#### Note: this error code is no longer emitted by the compiler.
+
 A `#![feature]` attribute was declared for a feature that is stable in the
 current edition, but not in all editions.
 
 Erroneous code example:
 
-```rust2018,compile_fail,E0705
+```compile_fail
 #![feature(rust_2018_preview)]
 #![feature(test_2018_feature)] // error: the feature
                                // `test_2018_feature` is