// run-rustfix #![deny(rustdoc::invalid_html_tags)] /// This `Vec` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct Generic; /// This `vec::Vec` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct GenericPath; /// This `i32` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct PathsCanContainTrailingNumbers; /// This `Vec::` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct Turbofish; /// This [link](https://rust-lang.org)`::` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct BareTurbofish; /// This `Vec::` thing! //~^ERROR unclosed HTML tag `i32` //~|HELP try marking as source pub struct Nested;