summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/mut-params.rs
blob: e403b7b78c9e74ea3744ccd25d7fbb7328b4702a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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"]' 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 '//pre[@class="rust item-decl"]' 1
// @!has - '//pre[@class="rust item-decl"]' 'mut'
pub fn baz(mut foo: Foo) {}