]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/doc_link_with_quotes.rs
Merge commit 'e8dca3e87d164d2806098c462c6ce41301341f68' into sync_from_cg_gcc
[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() {}