about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLzu Tao <taolzu@gmail.com>2019-02-14 07:40:25 +0000
committerLzu Tao <taolzu@gmail.com>2019-02-14 07:40:25 +0000
commit23993e89d57b4467d962ed5e4fd277e6b2ed2f0f (patch)
treec8c3b34a916f9984f79ef58f0d25d4deb4b2b264
parentc67d4749a547a0c937e257ad9e0248075178ddc4 (diff)
downloadrust-23993e89d57b4467d962ed5e4fd277e6b2ed2f0f.tar.gz
rust-23993e89d57b4467d962ed5e4fd277e6b2ed2f0f.zip
Remove no longer accurate diagnostic code about NLL
r? @steveklabnik
-rw-r--r--src/librustc/diagnostics.rs4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc/diagnostics.rs b/src/librustc/diagnostics.rs
index f46ff6f6062..00f9fa3a938 100644
--- a/src/librustc/diagnostics.rs
+++ b/src/librustc/diagnostics.rs
@@ -408,11 +408,7 @@ fn bar(x: &str, y: &str) -> &str { }
 fn baz<'a>(x: &'a str, y: &str) -> &str { }
 ```
 
-Lifetime elision in implementation headers was part of the lifetime elision
-RFC. It is, however, [currently unimplemented][iss15872].
-
 [book-le]: https://doc.rust-lang.org/book/ch10-03-lifetime-syntax.html#lifetime-elision
-[iss15872]: https://github.com/rust-lang/rust/issues/15872
 "##,
 
 E0119: r##"