summaryrefslogtreecommitdiff
path: root/compiler/rustc_error_codes/src/error_codes/E0771.md
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_error_codes/src/error_codes/E0771.md')
-rw-r--r--compiler/rustc_error_codes/src/error_codes/E0771.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/rustc_error_codes/src/error_codes/E0771.md b/compiler/rustc_error_codes/src/error_codes/E0771.md
index a2a1a20f230..4f36590025b 100644
--- a/compiler/rustc_error_codes/src/error_codes/E0771.md
+++ b/compiler/rustc_error_codes/src/error_codes/E0771.md
@@ -1,9 +1,11 @@
+#### Note: this error code is no longer emitted by the compiler
+
A non-`'static` lifetime was used in a const generic. This is currently not
allowed.
Erroneous code example:
-```compile_fail,E0771
+```compile_fail,E0770
#![feature(adt_const_params)]
fn function_with_str<'a, const STRING: &'a str>() {} // error!