blob: f3ea6995839174fce43e40925fd7a4dd2a64ee09 [file] [log] [blame]
// Rustdoc shouldn't display `mut` in function arguments, which are
// implementation details. Regression test for #81289.
#![crate_name = "foo"]
pub struct Foo;
// @count foo/struct.Foo.html '//*[@class="impl-items"]//*[@class="method has-srclink"]' 2
// @!has - '//*[@class="impl-items"]//*[@class="method"]' 'mut'
impl Foo {
pub fn foo(mut self) {}
pub fn bar(mut bar: ()) {}
}
// @count foo/fn.baz.html '//*[@class="rust fn"]' 1
// @!has - '//*[@class="rust fn"]' 'mut'
pub fn baz(mut foo: Foo) {}