Files
rust/src/test/rustdoc-ui/automatic-links.rs

18 lines
336 B
Rust
Raw Normal View History

2020-10-12 18:29:56 +02:00
#![deny(automatic_links)]
/// [http://a.com](http://a.com)
//~^ ERROR Unneeded long form for URL
/// [http://b.com]
//~^ ERROR Unneeded long form for URL
///
/// [http://b.com]: http://b.com
///
/// [http://c.com][http://c.com]
pub fn a() {}
/// [a](http://a.com)
/// [b]
///
/// [b]: http://b.com
pub fn everything_is_fine_here() {}