mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 23:06:23 +00:00
13 lines
127 B
Rust
13 lines
127 B
Rust
#![warn(clippy::doc_link_with_quotes)]
|
|
|
|
fn main() {
|
|
foo()
|
|
}
|
|
|
|
/// Calls ['bar']
|
|
pub fn foo() {
|
|
bar()
|
|
}
|
|
|
|
pub fn bar() {}
|