From 7c760e5f832f660df03d4f4fcb16512e602f3438 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Thu, 27 Feb 2020 12:19:18 +0900 Subject: [PATCH] Rustup to rust-lang/rust#61812 --- tests/ui/missing-doc-impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ui/missing-doc-impl.rs b/tests/ui/missing-doc-impl.rs index 1317521f736..57af84dcdf4 100644 --- a/tests/ui/missing-doc-impl.rs +++ b/tests/ui/missing-doc-impl.rs @@ -46,7 +46,7 @@ pub trait D { } /// dox -pub trait E { +pub trait E: Sized { type AssociatedType; type AssociatedTypeDef = Self;