-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of #93412 - fee1-dead:improve-rustdoc-const-bounds, r=Gu…
…illaumeGomez Improve rustdoc const bounds - Rustdoc no longer displays `~const` in trait bounds, because it currently means nothing for stable users, and because we still haven't decided on the final syntax yet. - Rustdoc will hide trait bounds where the trait is `Drop` AND it is `~const`, i.e. `~const Drop` bounds because it has no effect on stable users as well. - Because of additional logic that hides the whole `where` statement where it consists of `~const Drop` bounds (so it doesn't display `struct Foo<T>() where ;` like that), bounds that have no trait e.g. `where [T; N+1]: ;` are also hidden. Cherry-picked from #92433.
- Loading branch information
Showing
3 changed files
with
146 additions
and
73 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
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
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,60 @@ | ||
// Test that we do not currently display `~const` in rustdoc | ||
// as that syntax is currently provisional; `~const Drop` has | ||
// no effect on stable code so it should be hidden as well. | ||
// | ||
// To future blessers: make sure that `const_trait_impl` is | ||
// stabilized when changing `@!has` to `@has`, and please do | ||
// not remove this test. | ||
#![feature(const_trait_impl)] | ||
#![crate_name = "foo"] | ||
|
||
pub struct S<T>(T); | ||
|
||
// @!has foo/trait.Tr.html '//pre[@class="rust trait"]/code/a[@class="trait"]' '~const' | ||
// @!has - '//pre[@class="rust trait"]/code/a[@class="trait"]' 'Drop' | ||
// @has - '//pre[@class="rust trait"]/code/a[@class="trait"]' 'Clone' | ||
// @!has - '//pre[@class="rust trait"]/code/span[@class="where"]' '~const' | ||
// @!has - '//pre[@class="rust trait"]/code/span[@class="where"]' 'Drop' | ||
// @has - '//pre[@class="rust trait"]/code/span[@class="where"]' ': Clone' | ||
pub trait Tr<T> { | ||
// @!has - '//div[@id="method.a"]/h4[@class="code-header"]' '~const' | ||
// @!has - '//div[@id="method.a"]/h4[@class="code-header"]/a[@class="trait"]' 'Drop' | ||
// @has - '//div[@id="method.a"]/h4[@class="code-header"]/a[@class="trait"]' 'Clone' | ||
// @!has - '//div[@id="method.a"]/h4[@class="code-header"]/span[@class="where"]' '~const' | ||
// @!has - '//div[@id="method.a"]/h4[@class="code-header"]/span[@class="where fmt-newline"]' 'Drop' | ||
// @has - '//div[@id="method.a"]/h4[@class="code-header"]/span[@class="where fmt-newline"]' ': Clone' | ||
#[default_method_body_is_const] | ||
fn a<A: ~const Drop + ~const Clone>() where Option<A>: ~const Drop + ~const Clone {} | ||
} | ||
|
||
// @!has - '//section[@id="impl-Tr%3CT%3E"]/h3[@class="code-header in-band"]' '~const' | ||
// @!has - '//section[@id="impl-Tr%3CT%3E"]/h3[@class="code-header in-band"]/a[@class="trait"]' 'Drop' | ||
// @has - '//section[@id="impl-Tr%3CT%3E"]/h3[@class="code-header in-band"]/a[@class="trait"]' 'Clone' | ||
// @!has - '//section[@id="impl-Tr%3CT%3E"]/h3[@class="code-header in-band"]/span[@class="where"]' '~const' | ||
// @!has - '//section[@id="impl-Tr%3CT%3E"]/h3[@class="code-header in-band"]/span[@class="where fmt-newline"]' 'Drop' | ||
// @has - '//section[@id="impl-Tr%3CT%3E"]/h3[@class="code-header in-band"]/span[@class="where fmt-newline"]' ': Clone' | ||
impl<T: ~const Drop + ~const Clone> const Tr<T> for T where Option<T>: ~const Drop + ~const Clone { | ||
fn a<A: ~const Drop + ~const Clone>() where Option<A>: ~const Drop + ~const Clone {} | ||
} | ||
|
||
// @!has foo/fn.foo.html '//pre[@class="rust fn"]/code/a[@class="trait"]' '~const' | ||
// @!has - '//pre[@class="rust fn"]/code/a[@class="trait"]' 'Drop' | ||
// @has - '//pre[@class="rust fn"]/code/a[@class="trait"]' 'Clone' | ||
// @!has - '//pre[@class="rust fn"]/code/span[@class="where fmt-newline"]' '~const' | ||
// @!has - '//pre[@class="rust fn"]/code/span[@class="where fmt-newline"]' 'Drop' | ||
// @has - '//pre[@class="rust fn"]/code/span[@class="where fmt-newline"]' ': Clone' | ||
pub const fn foo<F: ~const Drop + ~const Clone>() where Option<F>: ~const Drop + ~const Clone { | ||
F::a() | ||
} | ||
|
||
impl<T> S<T> { | ||
// @!has foo/struct.S.html '//section[@id="method.foo"]/h4[@class="code-header"]' '~const' | ||
// @!has - '//section[@id="method.foo"]/h4[@class="code-header"]/a[@class="trait"]' 'Drop' | ||
// @has - '//section[@id="method.foo"]/h4[@class="code-header"]/a[@class="trait"]' 'Clone' | ||
// @!has - '//section[@id="method.foo"]/h4[@class="code-header"]/span[@class="where"]' '~const' | ||
// @!has - '//section[@id="method.foo"]/h4[@class="code-header"]/span[@class="where fmt-newline"]' 'Drop' | ||
// @has - '//section[@id="method.foo"]/h4[@class="code-header"]/span[@class="where fmt-newline"]' ': Clone' | ||
pub const fn foo<B: ~const Drop + ~const Clone>() where B: ~const Drop + ~const Clone { | ||
B::a() | ||
} | ||
} |