about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2019-07-05 18:53:34 -0400
committerAaron Hill <aa1ronham@gmail.com>2019-07-07 17:22:07 -0400
commit2f051605f3f5bacfbb66ece3ecfcacd048d38b5b (patch)
treefc400ba5a0e9db00bc5ef443d86f3fde560b0349 /src
parentec626992fe40ed7752145955d2a2e60228335987 (diff)
downloadrust-2f051605f3f5bacfbb66ece3ecfcacd048d38b5b.tar.gz
rust-2f051605f3f5bacfbb66ece3ecfcacd048d38b5b.zip
Remove unecessary doc comment
Diffstat (limited to 'src')
-rw-r--r--src/test/run-pass/existential_type_const.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/run-pass/existential_type_const.rs b/src/test/run-pass/existential_type_const.rs
index 333e15f3445..f8b66167967 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;