-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rustdoc: don't mark Box<T> as Iterator, Read, etc
Because Box<T> has pass-through implementations, rustdoc was giving it the "Notable Traits" treatment for Iterator, Read, Write, and Future, even when the type of T was unspecified. Pin had the same problem, but just for Future.
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
src/test/rustdoc/doc-notable_trait_box_is_not_an_iterator.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#![feature(doc_notable_trait)] | ||
#![feature(lang_items)] | ||
#![feature(no_core)] | ||
#![no_core] | ||
#[lang = "owned_box"] | ||
pub struct Box<T>; | ||
|
||
impl<T> Box<T> { | ||
pub fn new(x: T) -> Box<T> { | ||
Box | ||
} | ||
} | ||
|
||
#[doc(notable_trait)] | ||
pub trait FakeIterator {} | ||
|
||
impl<I: FakeIterator> FakeIterator for Box<I> {} | ||
|
||
#[lang = "pin"] | ||
pub struct Pin<T>; | ||
|
||
impl<T> Pin<T> { | ||
pub fn new(x: T) -> Pin<T> { | ||
Pin | ||
} | ||
} | ||
|
||
impl<I: FakeIterator> FakeIterator for Pin<I> {} | ||
|
||
// @!has doc_notable_trait_box_is_not_an_iterator/fn.foo.html '//*' 'Notable' | ||
pub fn foo<T>(x: T) -> Box<T> { | ||
Box::new(x) | ||
} | ||
|
||
// @!has doc_notable_trait_box_is_not_an_iterator/fn.bar.html '//*' 'Notable' | ||
pub fn bar<T>(x: T) -> Pin<T> { | ||
Pin::new(x) | ||
} |