mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-04 20:54:13 +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() {}
|