]> git.lizzy.rs Git - rust.git/commitdiff
Remove unecessary doc comment
authorAaron Hill <aa1ronham@gmail.com>
Fri, 5 Jul 2019 22:53:34 +0000 (18:53 -0400)
committerAaron Hill <aa1ronham@gmail.com>
Sun, 7 Jul 2019 21:22:07 +0000 (17:22 -0400)
src/test/run-pass/existential_type_const.rs

index 333e15f3445bf19339632015055e908724491d88..f8b66167967c390230fda7bfb0ccb647efedf2aa 100644 (file)
@@ -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;