]> git.lizzy.rs Git - rust.git/blob - tests/ui/doc_link_with_quotes.rs
Merge branch 'master' into doc_link_with_quotes
[rust.git] / tests / ui / doc_link_with_quotes.rs
1 #![warn(clippy::doc_link_with_quotes)]
2
3 fn main() {
4     foo()
5 }
6
7 /// Calls ['bar']
8 pub fn foo() {
9     bar()
10 }
11
12 pub fn bar() {}