]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_error_codes/src/error_codes/E0263.md
New upstream version 1.63.0+dfsg1
[rustc.git] / compiler / rustc_error_codes / src / error_codes / E0263.md
index 37271ac692d55fdbd1b4921c94a9311cf958ed4a..2d1ac40264de19f4326d5a473ef99842e8920cf5 100644 (file)
@@ -1,8 +1,10 @@
+#### Note: this error code is no longer emitted by the compiler.
+
 A lifetime was declared more than once in the same scope.
 
 Erroneous code example:
 
-```compile_fail,E0263
+```compile_fail,E0403
 fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str, z: &'a str) { // error!
 }
 ```