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

fn main() {
    foo()
}

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

pub fn bar() {}