mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
25 lines
503 B
Rust
25 lines
503 B
Rust
#![warn(clippy::doc_link_with_quotes)]
|
|
|
|
fn main() {
|
|
foo()
|
|
}
|
|
|
|
/// Calls ['bar'] uselessly
|
|
//~^ ERROR: possible intra-doc link using quotes instead of backticks
|
|
//~| NOTE: `-D clippy::doc-link-with-quotes` implied by `-D warnings`
|
|
pub fn foo() {
|
|
bar()
|
|
}
|
|
|
|
/// Calls ["bar"] uselessly
|
|
//~^ ERROR: possible intra-doc link using quotes instead of backticks
|
|
pub fn foo2() {
|
|
bar()
|
|
}
|
|
|
|
/// # Examples
|
|
/// This demonstrates issue \#8961
|
|
/// ```
|
|
/// let _ = vec!['w', 'a', 't'];
|
|
/// ```
|
|
pub fn bar() {}
|