From 7f55c834873cd9363bbdfa199f3d0dbadce99592 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Thu, 20 Aug 2020 15:25:35 +0200 Subject: [PATCH] Apply review comments --- src/librustc_error_codes/error_codes/E0759.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_error_codes/error_codes/E0759.md b/src/librustc_error_codes/error_codes/E0759.md index 2daaeba82f0..6d525310f75 100644 --- a/src/librustc_error_codes/error_codes/E0759.md +++ b/src/librustc_error_codes/error_codes/E0759.md @@ -1,4 +1,4 @@ -A `'static` requirement in a return type involving a trait is not fulfilled. +Return type involving a trait did not require `'static` lifetime. Erroneous code examples: @@ -14,7 +14,7 @@ fn bar(x: &i32) -> Box { // error! } ``` -These examples have the same semantics as the following: +Add `'static` requirement to fix them: ```compile_fail,E0759 # use std::fmt::Debug; -- 2.44.0