]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/doc_link_with_quotes.rs
Rollup merge of #95534 - jyn514:std-mem-copy, r=joshtriplett
[rust.git] / src / tools / clippy / 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() {}