rust/tests/rustdoc/rfc-2632-const-trait-impl.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
3.1 KiB
Rust
Raw Normal View History

2022-02-21 17:26:18 -06:00
// Test that we do not currently display `~const` in rustdoc
// as that syntax is currently provisional; `~const Destruct` has
2022-02-21 17:26:18 -06:00
// 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.
2023-09-19 20:57:06 -05:00
//
// FIXME(effects) add `const_trait` to `Fn` so we use `~const`
2024-06-21 07:22:29 -05:00
// FIXME(effects) restore `const_trait` to `Destruct`
#![allow(incomplete_features)]
#![feature(const_trait_impl, effects)]
2022-02-21 17:26:18 -06:00
#![crate_name = "foo"]
use std::marker::Destruct;
2022-02-21 17:26:18 -06:00
pub struct S<T>(T);
//@ !has foo/trait.Tr.html '//pre[@class="rust item-decl"]/code/a[@class="trait"]' '~const'
//@ has - '//pre[@class="rust item-decl"]/code/a[@class="trait"]' 'Fn'
//@ !has - '//pre[@class="rust item-decl"]/code/span[@class="where"]' '~const'
//@ has - '//pre[@class="rust item-decl"]/code/span[@class="where"]' ': Fn'
#[const_trait]
2022-02-21 17:26:18 -06:00
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"]' 'Fn'
//@ !has - '//section[@id="method.a"]/h4[@class="code-header"]/span[@class="where"]' '~const'
//@ has - '//section[@id="method.a"]/h4[@class="code-header"]/div[@class="where"]' ': Fn'
2024-06-21 07:22:29 -05:00
fn a<A: /* ~const */ Fn() /* + ~const Destruct */>()
where
2024-06-21 07:22:29 -05:00
Option<A>: /* ~const */ Fn() /* + ~const Destruct */,
{
}
2022-02-21 17:26:18 -06:00
}
//@ 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"]' 'Fn'
//@ !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"]/div[@class="where"]' ': Fn'
2024-06-21 07:22:29 -05:00
impl<T: /* ~const */ Fn() /* + ~const Destruct */> const Tr<T> for T
where
2024-06-21 07:22:29 -05:00
Option<T>: /* ~const */ Fn() /* + ~const Destruct */,
{
2024-06-21 07:22:29 -05:00
fn a<A: /* ~const */ Fn() /* + ~const Destruct */>()
where
2024-06-21 07:22:29 -05:00
Option<A>: /* ~const */ Fn() /* + ~const Destruct */,
{
}
2022-02-21 17:26:18 -06:00
}
//@ !has foo/fn.foo.html '//pre[@class="rust item-decl"]/code/a[@class="trait"]' '~const'
//@ has - '//pre[@class="rust item-decl"]/code/a[@class="trait"]' 'Fn'
//@ !has - '//pre[@class="rust item-decl"]/code/div[@class="where"]' '~const'
//@ has - '//pre[@class="rust item-decl"]/code/div[@class="where"]' ': Fn'
2024-06-21 07:22:29 -05:00
pub const fn foo<F: /* ~const */ Fn() /* + ~const Destruct */>()
where
2024-06-21 07:22:29 -05:00
Option<F>: /* ~const */ Fn() /* + ~const Destruct */,
{
2022-02-21 17:26:18 -06:00
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"]' 'Fn'
//@ !has - '//section[@id="method.foo"]/h4[@class="code-header"]/span[@class="where"]' '~const'
//@ has - '//section[@id="method.foo"]/h4[@class="code-header"]/div[@class="where"]' ': Fn'
2024-06-21 07:22:29 -05:00
pub const fn foo<B, C: /* ~const */ Fn() /* + ~const Destruct */>()
where
2024-06-21 07:22:29 -05:00
B: /* ~const */ Fn() /* + ~const Destruct */,
{
2022-02-21 17:26:18 -06:00
B::a()
}
}