mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
12 lines
127 B
Rust
12 lines
127 B
Rust
#![warn(clippy::doc_link_with_quotes)]
|
|
|
|
fn main() {
|
|
foo()
|
|
}
|
|
|
|
/// Calls ['bar']
|
|
pub fn foo() {
|
|
bar()
|
|
}
|
|
|
|
pub fn bar() {}
|