Update existing rustdoc tests

This commit is contained in:
Guillaume Gomez 2022-12-02 19:37:04 +01:00
parent 93d7aa146d
commit 269704a4a0
5 changed files with 6 additions and 6 deletions

View file

@ -61,7 +61,7 @@ impl<T> S<T> {
// @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: ~const Clone + ~const Destruct>()
pub const fn foo<B, C: ~const Clone + ~const Destruct>()
where
B: ~const Clone + ~const Destruct,
{