Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
doc_link_with_quotes.rs
blob: 17c04c34e2461dbef69838741da5e583c17bfb6e [
file
] [
log
] [
blame
]
#![
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
()
{}