rust-clippy/tests/ui/doc_link_with_quotes.rs
2022-02-01 11:21:42 +00:00

12 lines
127 B
Rust

#![warn(clippy::doc_link_with_quotes)]
fn main() {
foo()
}
/// Calls ['bar']
pub fn foo() {
bar()
}
pub fn bar() {}