Update tests: arity-2 @{has,matches} -> ...text

This commit is contained in:
Noah Lev 2022-08-10 13:10:04 -07:00
parent 01408fc627
commit 37eed1d1ff
40 changed files with 168 additions and 168 deletions

View file

@ -3,11 +3,11 @@
trait MyTrait {}
impl MyTrait for i32 {}
// @has impl_trait_alias/type.Foo.html 'Foo'
// @hastext impl_trait_alias/type.Foo.html 'Foo'
/// debug type
pub type Foo = impl MyTrait;
// @has impl_trait_alias/fn.foo.html 'foo'
// @hastext impl_trait_alias/fn.foo.html 'foo'
/// debug function
pub fn foo() -> Foo {
1