From 2f051605f3f5bacfbb66ece3ecfcacd048d38b5b Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Fri, 5 Jul 2019 18:53:34 -0400 Subject: [PATCH] Remove unecessary doc comment --- src/test/run-pass/existential_type_const.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/run-pass/existential_type_const.rs b/src/test/run-pass/existential_type_const.rs index 333e15f3445b..f8b66167967c 100644 --- a/src/test/run-pass/existential_type_const.rs +++ b/src/test/run-pass/existential_type_const.rs @@ -6,9 +6,6 @@ use std::fmt::Debug; -// Type `Foo` refers to a type that implements the `Debug` trait. -// The concrete type to which `Foo` refers is inferred from this module, -// and this concrete type is hidden from outer modules (but not submodules). pub existential type Foo: Debug; const _FOO: Foo = 5;