mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
3a3f70c94e
This class originated in the very first commit of `rustdoc_ng`, and was used
to add a color border around the item decl based on its kind.
4fd061c426/src/rustdoc_ng/html/static/main.css (L102-L106)
The item decl no longer has a border, and there aren't any
kind-specific styles in modern rustdoc's rendering of this UI item.
Most of this commit is updating test cases so that they use `item-decl` to
find the `<pre>` tag instead of relying on the fact that the class name
had `rust {kind}` in it while other `<pre>` tags only had class `rust`.
71 lines
3.1 KiB
Rust
71 lines
3.1 KiB
Rust
// Test that we do not currently display `~const` in rustdoc
|
|
// as that syntax is currently provisional; `~const Destruct` 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"]
|
|
|
|
use std::marker::Destruct;
|
|
|
|
pub struct S<T>(T);
|
|
|
|
// @!has foo/trait.Tr.html '//div[@class="item-decl"]/pre[@class="rust"]/code/a[@class="trait"]' '~const'
|
|
// @has - '//div[@class="item-decl"]/pre[@class="rust"]/code/a[@class="trait"]' 'Clone'
|
|
// @!has - '//div[@class="item-decl"]/pre[@class="rust"]/code/span[@class="where"]' '~const'
|
|
// @has - '//div[@class="item-decl"]/pre[@class="rust"]/code/span[@class="where"]' ': Clone'
|
|
#[const_trait]
|
|
pub trait Tr<T> {
|
|
// @!has - '//section[@id="method.a"]/h4[@class="code-header"]' '~const'
|
|
// @has - '//section[@id="method.a"]/h4[@class="code-header"]/a[@class="trait"]' 'Clone'
|
|
// @!has - '//section[@id="method.a"]/h4[@class="code-header"]/span[@class="where"]' '~const'
|
|
// @has - '//section[@id="method.a"]/h4[@class="code-header"]/span[@class="where fmt-newline"]' ': Clone'
|
|
fn a<A: ~const Clone + ~const Destruct>()
|
|
where
|
|
Option<A>: ~const Clone + ~const Destruct,
|
|
{
|
|
}
|
|
}
|
|
|
|
// @has - '//section[@id="impl-Tr%3CT%3E-for-T"]' ''
|
|
// @!has - '//section[@id="impl-Tr%3CT%3E-for-T"]/h3[@class="code-header"]' '~const'
|
|
// @has - '//section[@id="impl-Tr%3CT%3E-for-T"]/h3[@class="code-header"]/a[@class="trait"]' 'Clone'
|
|
// @!has - '//section[@id="impl-Tr%3CT%3E-for-T"]/h3[@class="code-header"]/span[@class="where"]' '~const'
|
|
// @has - '//section[@id="impl-Tr%3CT%3E-for-T"]/h3[@class="code-header"]/span[@class="where fmt-newline"]' ': Clone'
|
|
impl<T: ~const Clone + ~const Destruct> const Tr<T> for T
|
|
where
|
|
Option<T>: ~const Clone + ~const Destruct,
|
|
{
|
|
fn a<A: ~const Clone + ~const Destruct>()
|
|
where
|
|
Option<A>: ~const Clone + ~const Destruct,
|
|
{
|
|
}
|
|
}
|
|
|
|
// @!has foo/fn.foo.html '//div[@class="item-decl"]/pre[@class="rust"]/code/a[@class="trait"]' '~const'
|
|
// @has - '//div[@class="item-decl"]/pre[@class="rust"]/code/a[@class="trait"]' 'Clone'
|
|
// @!has - '//div[@class="item-decl"]/pre[@class="rust"]/code/span[@class="where fmt-newline"]' '~const'
|
|
// @has - '//div[@class="item-decl"]/pre[@class="rust"]/code/span[@class="where fmt-newline"]' ': Clone'
|
|
pub const fn foo<F: ~const Clone + ~const Destruct>()
|
|
where
|
|
Option<F>: ~const Clone + ~const Destruct,
|
|
{
|
|
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"]' '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"]' ': Clone'
|
|
pub const fn foo<B, C: ~const Clone + ~const Destruct>()
|
|
where
|
|
B: ~const Clone + ~const Destruct,
|
|
{
|
|
B::a()
|
|
}
|
|
}
|