summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/doc_link_with_quotes.rs
blob: 17c04c34e2461dbef69838741da5e583c17bfb6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(clippy::doc_link_with_quotes)]

fn main() {
    foo()
}

/// Calls ['bar'] uselessly
pub fn foo() {
    bar()
}

/// # Examples
/// This demonstrates issue \#8961
/// ```
/// let _ = vec!['w', 'a', 't'];
/// ```
pub fn bar() {}