rust-clippy/tests/ui/doc_link_with_quotes.rs

17 lines
236 B
Rust

#![warn(clippy::doc_link_with_quotes)]
fn main() {
foo()
}
/// Calls ['bar'] uselessly
pub fn foo() {
bar()
}
/// # Examples
/// This demonstrates issue \#8961
/// ```
/// let _ = vec!['w', 'a', 't'];
/// ```
pub fn bar() {}